Hi Tyler, www.connectionstrings.com provides a good source for basically all database connection strings. To know which 32 bit ODBC drivers are available on your system start this program: C:\Windows\SysWOW64\odbcad32.exe and go to the drivers tab. On my system I only see a generic SQL Server driver named SQL Server. The driver name should exactly match what you have in the DRIVER part of the connection string. You AP connect string has this: Projdata=Integrated Security=SSPI. This means: "Integrated Security" or "Trusted_Connection": When false, User ID and Password are specified in the connection. When true, the current Windows account credentials are used for authentication. According to the connection string page, this would be equivalent to this for ODBC: Driver={SQL Server};Server=myServerAddress;Database=myDataBase;Trusted_Connection=Yes; Hope this helps Regards, Frank
↧