About 6,270,000 results
Open links in new tab
  1. sql - Finding The DSN To My Database? - Stack Overflow

    May 24, 2010 · A DSN (data source name) is an indirect way of referring to the database. You have to create them manually (or semi-automatically using a wizard of some kind). Go to …

  2. odbc - The specified DSN contains an architecture mismatch …

    Jan 17, 2012 · The specified DSN contains an architecture mismatch between the Driver and Application To resolve this error, use the 32-bit odbcad32.exe to configure or remove the DSN.

  3. Where are ODBC Machine DSN settings stored in Windows?

    Sep 12, 2019 · In my Access database, I reference the DSN, "mydatasourcename" to connect to an online MySQL database. It is a machine DSN. Somehow through the course of editing my …

  4. How to find the ODBC driver name for a connection string?

    Oct 21, 2015 · Then select the "File DSN" tab Click the "Add" button, and select the driver you have installed Then click the "Advanced" button You can then copy and paste the correct …

  5. Why am I getting "Data source name not found and no default …

    Oct 26, 2019 · When trying to make a program on Windows that connects to a database via ODBC, I got the following error: [Microsoft][ODBC Driver Manager] Data source name not …

  6. python - Connecting to ODBC using pyODBC - Stack Overflow

    Jun 15, 2015 · I've read all the faq pages from the python odbc library as well as other examples and managed to connect to the DSN, using the following code: cnxn = …

  7. C# connect to System ODBC datasource - Stack Overflow

    Jan 9, 2020 · The server admin created a 32-bit ODBC system DSN for me that has the database and user credentials in it. I'm struggling now to understand how to connect to that database …

  8. asp.net - DSN to connectionstring? - Stack Overflow

    If you have created a DSN, then the DSN is the ConnectionString ! You can simply use DSN=<YourDSNName> and pass it to an OdbcConnection object. For instance, using C#: …

  9. cx_Oracle & Connecting to Oracle DB Remotely - Stack Overflow

    dsn_tns = cx_Oracle.makedsn(ip, port, SID) db = cx_Oracle.connect('username', 'password', dsn_tns) One of the main reasons I like this method is that I usually have a TNSNAMES.ORA …

  10. What is the difference between connectionstring and dsn?

    DSN stands for Data Source Name and it is kept in registry as a user or system value. If it is there, you can refer to connection just by its name. It looks tempting to do that way, and many …