DSN to connectionstring? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:10:23Z http://stackoverflow.com/feeds/question/1008047 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1008047/dsn-to-connectionstring 0 DSN to connectionstring? Beska 2009-06-17T16:05:52Z 2009-06-17T18:18:08Z <p>We've got an ASP.NET website that uses a database that we want to be able to use a connectionstring to get to. We've successfully set up a DSN for connecting to this DB, but I can't seem to discover the correct magic to go with a connectionstring.</p> <p>Is there a straightforward way to translate the values from the DSN into a connectionstring? I know that from the UI, there isn't an obvious answer for this...each db vendor provides a different UI for creating a DSN based on what they require. However, I was hoping that underneath the UI it might just be doing something like creating a connection string behind the scenes, and I could look at that to see what I'm doing wrong. Any hope of this? If so, any pointers on how to get the info I need?</p> <p>(I've gone to connectionstrings.com to try to make sure my connection string is in the right format, but nothing seems to be working...which is why I'm trying this strange translate-from-dsn tact.)</p> <p><strong>EDIT:</strong> Something I must not have been clear on is that we do not want to have a DSN entry. We have created one, and have used it for the time being, but we want to be able to get rid of it and use a connectionstring <strong>without</strong> a dsn.</p> http://stackoverflow.com/questions/1008047/dsn-to-connectionstring/1008089#1008089 1 Answer by Cerebrus for DSN to connectionstring? Cerebrus 2009-06-17T16:11:27Z 2009-06-17T16:25:29Z <p>If you have created a DSN, then the DSN <strong>is</strong> the ConnectionString !</p> <p>You can simply use <code>DSN=&lt;YourDSNName&gt;</code> and pass it to an OdbcConnection object.</p> <p>For instance, using C#:</p> <pre><code>string dsnName = "DSN=MyDSN"; using (OdbcConnection conn = new OdbcConnection(dsnName)) { conn.Open(); } </code></pre> <p>Alternatively, you can use the <a href="http://msdn.microsoft.com/en-us/library/system.data.odbc.odbcconnectionstringbuilder%28loband%29.aspx" rel="nofollow"><code>OdbcConnectionStringBuilder</code></a> class and set its <code>DSN</code> property.</p> http://stackoverflow.com/questions/1008047/dsn-to-connectionstring/1008730#1008730 1 Answer by Mark Brackett for DSN to connectionstring? Mark Brackett 2009-06-17T18:18:08Z 2009-06-17T18:18:08Z <p>If you can use OLEDB, then you can create a <a href="http://msdn.microsoft.com/en-us/library/e38h511e%28VS.71%29.aspx" rel="nofollow">UDL file</a>. Just create a new text document, <code>test.udl</code> and double click. Fill out the dialog, then open it back up with Notepad. Voila - there's your connection string.</p> <p>ODBC is a bit harder - you can either create a file DSN from ODBC Administrator or poke around the registry in <code>HKLM\Software\ODBC\ODBC.INI\&lt;DSN Name&gt;</code> for a system DSN. You'll end up with some name/value pairs. You should be able to translate those into a connection string. The <code>\\Driver</code> will list the actual DLL, so you'll need to get the provider name from <code>HKLM\Software\ODBC\ODBC Data Sources\\&lt;DSN Name&gt;</code>.</p> <p>If you can use the OLEDB Provider for ODBC, then you can use the UDL trick and have it build a connection string from an ODBC file DSN as well. The ODBC connection string will be in Extended Properties of the UDL.</p>