Making database connection in Python with Sybase or odbc -
in organization make use of sybase create db service of database , our software connect service make use of database.
i using python(pycharm) , want connect db service. or if create new service in python code work done. able following connection string information interactive sql while connecting same service-
"uid=;pwd=;server=;astart=no;links=tcpip()"
i want able create db connection in python using above information. helpful if can give me sqlalchemy db url(or working format) such scenarios.
my simple goal able connect database , result of select queries in list or dictionary.
engine = create_engine('connectionstring')
what should format of connectionstring given above information?
Comments
Post a Comment