I build an application to do some number crunching with wxpython. I have to access the data from SQL Server 2005 for my purpose. I am using PYODBC and when I asked my server adminstrator, he provided me the server name and unique data ID for the database.
I don't see the syntax to access database with unique data ID in PYODBC as something like:
Conn=pyodbc.connect('DRIVER={SQL Server};SERVER=USMDUBEDAS215;DATABASE=spam;UID=usr,PWD=pwd')
when you have a database and table name. How can you access the database with server-name and Data_ID?
I don't know from where to start.