active questions tagged connection-string - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T05:12:41Zhttp://stackoverflow.com/feeds/tag/connection-stringhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902314/have-you-ever-had-this-error2Have you ever had this error?behrooz2009-12-14T17:32:08Z2009-12-14T17:49:02Z
<p>microsoft visual studio opens my table using dataset designer<br>
but i cannot open my table using the same connectionstring.<br>
my database is DBase IV.<br>
and this is the connectionstring </p>
<blockquote>
<p>Driver={Microsoft dBASE Driver
(*.dbf)};collatingsequence=ASCII;dbq=d:\Data\88;deleted=0;driverid=277;fil=dBase
IV;maxbuffersize=2048;maxscanrows=8;pagetimeout=600;safetransactions=0;statistics=0;threads=3;uid=admin;usercommitsync=Yes</p>
</blockquote>
<p>it is made by visual studio itself.<br>
and this is my code </p>
<pre><code>DataSet1TableAdapters.AN10TableAdapter _AN10TableAdapter = new DataSet1TableAdapters.AN10TableAdapter();
_AN10TableAdapter.Fill(D_Data.AN10);
</code></pre>
<p>and this is the error </p>
<blockquote>
<p>ERROR [IM002] [Microsoft][ODBC Driver
Manager] Data source name not found
and no default driver specified</p>
</blockquote>
<p>this real joke is killing me.<br>
platform:vista x64<br>
language:c#.net<br>
.netframework vesion:3.5<br>
worked on it:10 days </p>
http://stackoverflow.com/questions/1884680/application-unable-to-connect-to-sql-server-20080Application Unable To Connect to SQL Server 2008jchapa2009-12-10T22:55:02Z2009-12-10T23:01:53Z
<p>Hello,
I've been running an ASP.NET MVC application on my IIS 7.5 localhost (on my Win7 Pro box) server with SQL Server 2005 Developer Edition.</p>
<p>I went to put the application on my production server (IIS 7, SQL Server 2008) and am getting SQL Server connection errors. Here is the error I get when I try to browse site root:</p>
<blockquote>
<p>A network-related or instance-specific error occurred while
establishing a connection to SQL
Server. The server was not found or
was not accessible. Verify that the
instance name is correct and that SQL
Server is configured to allow remote
connections. (provider: Named Pipes
Provider, error: 40 - Could not open a
connection to SQL Server)</p>
</blockquote>
<p>I have triple checked my connection string. My host's connection string was in the format XXX.XX.XX.XX,XXXX. Is it normal to have a comma following the IP Address?</p>
<p>Does anyone have any suggestions for something I may be missing?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1883449/asp-net-how-to-make-sure-web-config-is-used-for-conectionstring-rather-than-ap2asp.NET - how to make sure web.config is used for conectionstring (rather than app.config)Grayson Mitchell2009-12-10T19:40:51Z2009-12-10T20:01:46Z
<p>I have a MVC web site that worked well, until I moved it into test, where it fell over. After some investigation If found that because I had split the 'model' into its own seperate project, the model was using the connectionstring from its own app.config (not the web.config of the website).</p>
<p>So I found an article somewhere (can't find the link now), showing how I can use the web.config instead - great, I got the site into test.</p>
<p>Unfortuanatly, the next time I tried to get the site implemented in test again, I got the same problem, and after a while discovered that somehow the app.config of my model had re-written the connection string DOH!</p>
<p>What is the best practice here? I need the database configuration to be in a file that is easily changed by my system administrators</p>
http://stackoverflow.com/questions/1862038/connecting-to-sotamas90-odbc0Connecting to SOTAMAS90 ODBC ?bochur12009-12-07T18:44:29Z2009-12-08T00:31:04Z
<p>How do I connect to Mas90's file using their ODBC that they setup - SOTAMAS90? how do I do this in vb.net ? </p>
http://stackoverflow.com/questions/1862283/help-me-create-a-jtds-connection-string0Help me create a jTDS connection stringOmu2009-12-07T19:23:46Z2009-12-07T21:39:11Z
<p>my sql server instance name is MYPC\SQLEXPRESS and I'm trying to create a jTDS connection string to connect to the database 'Blog'. Can anyone please help me accomplish that ?</p>
<p>I'm trying to do like this:</p>
<pre><code>DriverManager.getConnection("jdbc:jtds:sqlserver://127.0.0.1:1433/Blog", "user", "password");
</code></pre>
<p>and I get this:</p>
<pre><code> java.sql.SQLException: Network error IOException: Connection refused: connect
at net.sourceforge.jtds.jdbc.ConnectionJDBC2.<init>(ConnectionJDBC2.java:395)
at net.sourceforge.jtds.jdbc.ConnectionJDBC3.<init>(ConnectionJDBC3.java:50)
at net.sourceforge.jtds.jdbc.Driver.connect(Driver.java:184)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at SqlConnection.Connect(SqlConnection.java:19)
at main.main(main.java:11)
Caused by: java.net.ConnectException: Connection refused: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(Unknown Source)
at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.sourceforge.jtds.jdbc.SharedSocket.createSocketForJDBC3(SharedSocket.java:305)
at net.sourceforge.jtds.jdbc.SharedSocket.<init>(SharedSocket.java:255)
at net.sourceforge.jtds.jdbc.ConnectionJDBC2.<init>(ConnectionJDBC2.java:323)
... 6 more
</code></pre>
http://stackoverflow.com/questions/1044796/connection-string-for-remote-database-server2connection string for remote database serverRichard Reddy2009-06-25T16:08:26Z2009-12-04T14:47:52Z
<p>Hi guys,</p>
<p>I have 2 servers setup at the moment. One is a web server running Win Server 08 and the other is a database server running SQL Server 08 on Win Server 08.</p>
<p>Currently I have my site setup so that it can read/write to the database by using a connection string I created with the database name, server ip, db user and db pwd. The db user I have created has a 'public' role setup in the database (not db owner) and can just run exec stored procedures. My the connection string currently looks like this:</p>
<pre><code><add name="SiteDBConn" connectionString="Server=IPOfServer;Database=DBname;User ID=userhere;Password=passhere;"/>
</code></pre>
<p>While this is working perfectly for me, I would like to setup a database connection string that did not contain any username and password. On some of my other servers, where SQL server resides on the same server as the web files, I am able to use a trusted connection and use the built in 'Network Service' user on my database. This lets me run a connection string with no username and password like so:</p>
<pre><code><add name="SiteDBConn" connectionString="Server=localhost;Database=DBname;Trusted_Connection=Yes;"/>
</code></pre>
<p>Is there an easy way to achieve a connection to the database without hardcoding a username and password - like the above connection string - when using 2 different servers? Am I wasting my time going down this route seeing as how the database user I created has only exec permissions anyways?</p>
<p>Thanks for your thoughts on this.</p>
<p>Rich</p>
http://stackoverflow.com/questions/1175952/why-couldnt-i-check-for-a-null-reference-on-a-connection-string2Why couldn't I check for a null reference on a connection string?Breadtruck2009-07-24T06:06:25Z2009-12-04T12:21:19Z
<p>Probably a C# noob question, so don't flame me. I was trying to do this:</p>
<pre><code>if (ConfigurationManager.ConnectionStrings["PrimaryConnectionString"].ConnectionString != null)
{
// ...
}
</code></pre>
<p>But I kept getting a <code>System.NullReferenceException</code>. I thought since it returns a string that I could just check for <code>null</code> and move on. It took me a while to find the right way to do it:</p>
<pre><code>ConnectionStringSettings cs = ConfigurationManager.ConnectionStrings["PrimaryConnectionString"];
if (cs != null)
{
this.Connection.ConnectionString = cs.ConnectionString;
}
</code></pre>
<p>So in other instances, like checking a <code>Session</code> object for some value I would do a check for <code>null</code> like this:</p>
<pre><code>if (Session["EmployeeID"] != null)
{
_EmployeeID = System.Convert.ToInt32(Session["EmployeeID"]);
}
</code></pre>
<p>So I just wanted to know how do you know when you can or can't do a check for <code>null</code>?</p>
http://stackoverflow.com/questions/1841793/problems-connecting-to-my-database-5Problems connecting to my databaseharry2009-12-03T18:11:51Z2009-12-03T18:19:44Z
<p>I am trying to connect my DB to a project in c# and it is not working? any ideas??</p>
<pre><code>static string connectionString =
"Data Source=ESTER-PC;Initial Catalog=fridge;
Integrated Security=True;Server Version=9.00.1399.06;";
//"Data Source=Fridge;Persist Security Info=True;";
</code></pre>
http://stackoverflow.com/questions/1188962/linq-to-sql-set-connection-string-dynamically-based-on-environment-variable0Linq to Sql - Set connection string dynamically based on environment variableRyan2009-07-27T15:49:44Z2009-12-03T01:40:43Z
<p>I need to set my connection string for Linq to Sql based on an environment variable. I have a function which will return the connection string from the web.config based on the environment variable, but how do I get Linq to always use this "dynamically created" connection string (preferably without having to specify it every time)?</p>
<p>I know I can specify the connection string using the constructor, but how does that work when using the datacontext in a LinqDataSource? </p>
http://stackoverflow.com/questions/1833151/is-it-possible-and-how-to-add-connectionstring-to-app-config-at-runtime-in-c0Is it possible (and how) to add ConnectionString to app.config at runtime in C#?Lieven Cardoen2009-12-02T14:15:41Z2009-12-02T14:56:47Z
<p>I have a console application which gets the connectionstring as a parameter. I would have to set a ConnectionString in app.config with name 'ConnectionString' and the given parameter as the sql connectionstring.</p>
<p>Thx to answers. With help of the links I got to this:</p>
<blockquote>
<p>var config =
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
var connectionStringSettings =
new ConnectionStringSettings("ConnectionString",
_arguments["connectionString"], "System.Data.SqlClient");
config.ConnectionStrings.ConnectionStrings.Add(connectionStringSettings);
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("connectionStrings");</p>
</blockquote>
http://stackoverflow.com/questions/1830645/how-to-see-the-connection-string-used-to-connect-to-sql-server0How to see the connection string used to connect to SQL Serverxyzzer2009-12-02T04:29:05Z2009-12-02T12:35:40Z
<p>Is there a way to see what connection string was used to connect to SQL Server? Or rather what string was used in a failed login attempt.</p>
<p>Many times I deal with complex systems in which I see failures caused by some service failing to log in to SQL. I am guessing the connection string might be wrong, but since I can't see what it was I often have problems figuring out who actually had that problem connecting to be able to reconfigure it and get it fixed.</p>
<p>The errors in the log just say something like
2009-12-01 20:16:31.05 Logon SSPI handshake failed with error code 0x8009030c while establishing a connection with integrated security; the connection has been closed. [CLIENT: 10.124.172.65]
2009-12-01 20:16:31.06 Logon Error: 18452, Severity: 14, State: 1.
2009-12-01 20:16:31.06 Logon Login failed. The login is from an untrusted domain and cannot be used with Windows authentication. [CLIENT: 10.234.222.13]</p>
<p>Is there some audit I could enable or a tool to sniff out the connection string so I could figure out what's wrong with the string by analyzing the string itself?</p>
http://stackoverflow.com/questions/815017/is-there-a-standard-way-to-deploy-an-application-with-sql-server-express1Is there a standard way to deploy an application with SQL Server express?Soni Ali2009-05-02T15:22:15Z2009-11-29T03:51:23Z
<p>In Winforms or WPF
Is there a standard way to deploy an application with SQL Server express?
Is there a standard way to create a local SQL Server express database and also update the app.config connectionStrings settings during an application install?</p>
http://stackoverflow.com/questions/1811657/log-in-and-password-using-vb6-and-access-20070Log in and password using VB6 and access 2007studentnoob357832009-11-28T05:17:03Z2009-11-28T05:56:57Z
<p>hello again, im trying to create a vb6 application linking to microsoft access 2007. im going to save account names and passwords on access 2007. Im using vb6 as front end. would somebody help me on the connection string and the codes to store and check the account names and passwords. </p>
http://stackoverflow.com/questions/1795728/connect-access-via-c1connect Access via c#Yan2009-11-25T09:31:55Z2009-11-25T22:57:49Z
<p>Hi,
i need to open a connection to a remote access db.
in the local environment to the remote acess db is working great .
when i run this application from production server (other server) it's fail with message</p>
<p>"
It is already opened exclusively by another user, or you need permission to view its data.
"</p>
<p>my code :</p>
<pre><code> conString =
@"Provider=Microsoft.JET.OLEDB.4.0;"
+ @"data source=" \\150.248.248.38\d$\TestApp\vending.mdb;Jet OLEDB:Database Password=1234;";
OleDbConnection connAccess = new OleDbConnection(conString);
try
{
connAccess.Open();
objDiningRoom.Connection = connAccess;
....
}
catch (Exception ex)
{
}
finally
{
connAccess.Close();
connAccess.Dispose();
}
</code></pre>
<p>*Its not open in other place
thanks</p>
http://stackoverflow.com/questions/1796057/net-desktop-app-how-do-store-change-application-settings-or-connection-strings1.net desktop app - how do store/change application settings or connection strings?stan g2009-11-25T10:35:01Z2009-11-25T11:05:32Z
<p>I need to give the user the ability to change application settings, in this case the location for the application database. I noticed that Application Settings are read only at run time, but this needs to be application-wide, not user-specific. How do I persist an application-wide connection string in windows.forms that is changeable at runtime?</p>
http://stackoverflow.com/questions/1786415/joomla-cant-connect-to-db0Joomla Cant Connect to DBmike condiff2009-11-23T22:10:59Z2009-11-23T22:10:59Z
<p>This sounds really easy to fix but I've been working on it for awhile.</p>
<pre><code>Database Error: Unable to connect to the database:Could not connect to MySQL
</code></pre>
<p>I had to make a local copy of Joomla for backup and changes so I didn't mess up the live site.</p>
<p>I grabbed all the files off the live site via FTP. Did a DB dump. Put the DB on my local machine, copied the Joomla files to a subfolder of my server root. Changed config variables to fit the current setup of PHP, Mysql, Apache.</p>
<p>Now I put in a test.php which connected and queried the DB fine.</p>
<pre><code>$db = mysql_connect("localhost","root","sunshine") or die ('Unable to connect to Database!');
mysql_select_db("iweb");
$query = "SELECT * FROM jos_content LIMIT 0 , 30";
$results = mysql_query($query);
while($row = mysql_fetch_assoc($results)){
echo '<br>'.$row['title'];
}
</code></pre>
<p>however when I put the same DB credentials into the configuration.php it gives the the aforementioned error. </p>
<p>I have been looking at the .htaccess and haven't found anything.</p>
<p>Anyone have an idea of what is going on here?</p>
<p>Joomla 1.5.4, Apache 2.2.X PHP 5.2.X on a Windows XP Professional Box.</p>
http://stackoverflow.com/questions/1784045/connection-pooling-and-multiple-connection-strings0Connection Pooling and Multiple Connection Stringstroylar2009-11-23T15:55:18Z2009-11-23T16:00:28Z
<p>An ASP.NET 3.5 application has two connection strings:</p>
<pre><code>Data Source=RedDB;Initial Catalog=Red;User Id=myuser;Password=pas;Max Pool Size=50;Min Pool Size=1
Data Source=BlueDB;Initial Catalog=Blue; User Id=myuser;Password=pas;Max Pool Size=375;Min Pool Size=2
</code></pre>
<p>Suppose the RedDB connection has a stored procedure that is hanging indefinitely due to a bad index. </p>
<ol>
<li><p>If the application does not close the RedDB connection properly (viz., with a try/finally block), how quickly do the pool connections get recycled as users are hitting the site?</p></li>
<li><p>If the RedDB connection pool is maxed out because of users getting the SQL timeout, does that have ANY impact on the BlueDB, or is that a completely isolated connection pool?</p></li>
</ol>
http://stackoverflow.com/questions/1776930/connection-string-in-web-config2connection string in web configunknown (google)2009-11-21T22:01:25Z2009-11-22T01:40:42Z
<p>I have a web application which i make on my local host and publish it on different servers.</p>
<p>in the web config of this application i have connectionstrings property like:</p>
<pre><code><connectionStrings>
<add name="MyConnectionString" connectionString="Data Source=XYZ-PC\SQLEXPRESS;Initial Catalog=SumooHServerDB;Integrated Security=True" providerName="System.Data.SqlClient"/>
</code></pre>
<p></p>
<p>Now connectionstring data source has the name of my server and when ever i publish it and run this application on different server i have to change XYZ-PC\SQLEXPRESS to the name of the server..</p>
<p>Is there a way i dont have to do this as it does not feel right..</p>
<p>any suggestions..</p>
<p>thanks</p>
http://stackoverflow.com/questions/1769974/i-m-using-one-database-with-the-same-name-in-sql-server-2000-and-sql-server-20050I m using one database with the same name in SQL Server 2000 and SQL Server 2005.sudhanshoo2009-11-20T11:46:15Z2009-11-20T15:33:11Z
<p>I am using one database with the same name in SQL Server 2000 and SQL Server 2005. </p>
<p>How can I manage the connection string in the web.config file so that we can differentiate the connection. </p>
<p>While we are using the same user name and password for the both databases.</p>
http://stackoverflow.com/questions/1743223/coverageinfo-getcoveragestatus-vs-coverageinfo-iscoveragesufficient-are-they0CoverageInfo.getCoverageStatus() vs CoverageInfo.isCoverageSufficient(), are they the same?AtariPete2009-11-16T16:20:03Z2009-11-17T14:35:43Z
<p>In trying to determing a if a specific connection is supported, I'm cofused about the difference between <em>CoverageInfo.getCoverageStatus()</em> and <em>CoverageInfo.isCoverageSufficient()</em>. For example:</p>
<pre><code>// check mds with getCoverageStatus() and bitwise check
boolean hasMdsCoverage1 = (CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS;
// check mds with isCoverageSufficient()
boolean hasMdsCoverage2 = CoverageInfo.isCoverageSufficient(CoverageInfo.COVERAGE_MDS);
</code></pre>
<p>Both <em>hasMdsCoverage1</em> and <em>hasMdsCoverage2</em> seem to return the same result, but why two different approaches? Is there ever a case where they'll return a different result?</p>
<p>Ideally I'd like to use <em>CoverageInfo.isCoverageSufficent()</em> since this looks cleaner in code, but before I do so I want to make sure I'm not missing out on anything that <em>getCoverageStatus()</em> would provide. </p>
<p>NOTE: I'm using this to check for valid connections via BIS, MDS, WAP and WAP2 protocols.</p>
http://stackoverflow.com/questions/1712264/data-entities-connection-string-problem0Data Entities Connection String ProblemPhil.Wheeler2009-11-11T00:39:17Z2009-11-11T03:38:34Z
<p>I must have changed something somewhere, but damned if I can figure out what it is.</p>
<p>I have a DAL that handles all my data access (as is a DAL's wont) to my SQL Server DB. This includes the Entity Model, the repository classes and the connection string in the App.Config file.</p>
<p>Somewhere along the piece, I must have changed something and am now getting the following exception every time I try to view a page on my MVC application:</p>
<blockquote>
<p>The specified named connection is
either not found in the configuration,
not intended to be used with the
EntityClient provider, or not valid.</p>
</blockquote>
<p>This is any page that inherits <code><IEnumerable<DataAccess.Layer.Class>></code>. What am I missing?</p>
<p><em>Connection String:</em></p>
<pre><code><add name="JobTrackEntities"
connectionString="metadata=res://*/JobTrackDataModel.csdl|res://*/JobTrackDataModel.ssdl|res://*/JobTrackDataModel.msl;provider=System.Data.SqlClient;provider connection string='Data Source=.\SQLEXPRESS;AttachDbFilename=&quot;C:\Users\Phil\Documents\Visual Studio 2010\Projects\JobTrack\trunk\JobTrack\App_Data\JobTrack.MDF&quot;;Integrated Security=True;User Instance=True;MultipleActiveResultSets=True'" providerName="System.Data.EntityClient" />
</code></pre>
<p><em>Designer.cs snippet:</em></p>
<pre><code>public JobTrackEntities() :
base("name=JobTrackEntities", "JobTrackEntities")
{
this.OnContextCreated();
}
/// <summary>
/// Initialize a new JobTrackEntities object.
/// </summary>
public JobTrackEntities(string connectionString) :
base(connectionString, "JobTrackEntities")
{
this.OnContextCreated();
}
/// <summary>
/// Initialize a new JobTrackEntities object.
/// </summary>
public JobTrackEntities(global::System.Data.EntityClient.EntityConnection connection) :
base(connection, "JobTrackEntities")
{
this.OnContextCreated();
}
</code></pre>
http://stackoverflow.com/questions/1708964/why-do-i-get-this-error-when-i-try-to-open-an-mdf-database-via-path-filename-in-e0Why do I get this error when I try to open an MDF database via path/filename in Entity Framework?Edward Tanguay2009-11-10T15:49:17Z2009-11-10T15:56:40Z
<p>I'm migrating an application from LINQ-to-SQL to <strong>Entity</strong> <strong>Framework</strong> and have changed the line:</p>
<pre><code>using (var db = new MainDataContext(SystemHelpers.GetDatabaseConnectionString()))
</code></pre>
<p>to </p>
<pre><code>using (var db = new MainDataEntities(SystemHelpers.GetDatabaseConnectionString()))
</code></pre>
<p>where <code>SystemHelpers.GetDatabaseConnectionString())</code> is a <strong>file path to an .mdf file</strong>.</p>
<p>It works in LINQ-to-SQL but in Entity Framework the above line gives me this <strong>error</strong>:</p>
<blockquote>
<p>The format of the initialization
string conflicts with the
specification which begins with '0';</p>
</blockquote>
<p>which is the best translation I can do from the German:</p>
<blockquote>
<p>"Das Format der
Initialisierungszeichenfolge stimmt
nicht mit der Spezifikation überein,
die bei Index '0' beginnt."</p>
</blockquote>
http://stackoverflow.com/questions/1612959/sql-server-compact-data-directory-macro-in-connection-string-more-info-needed0SQL Server Compact 'Data Directory' macro in Connection String - more info neededcodeulike2009-10-23T11:54:49Z2009-11-03T17:08:52Z
<p>So, as described <a href="http://msdn.microsoft.com/en-us/library/aa983341.aspx" rel="nofollow">on this msdn page</a>, when you define a Connection String for
SQL Server Compact 3.5, you can use the "Data Directory" macro, like this:</p>
<p>quote from <a href="http://msdn.microsoft.com/en-us/library/aa983341.aspx" rel="nofollow">this msdn page</a>:</p>
<blockquote>
<p><strong>Data Directory Support</strong><br />
SQL Server Compact 3.5 now supports the Data Directory macro. This means that if you add the string |DataDirectory| (enclosed in pipe symbols) to a file path, it will resolve to the path of the database. </p>
<p>For example, consider the connection string: </p>
<p>"Data Source= c:\program files\MyApp\Mydb.sdf"</p>
<p>When using Data Directory, you can instead use the following connection string:</p>
<p>"Data Source = |DataDirectory|\Mydb.sdf"</p>
<p>For more information, see How to: Deploy a SQL Server Compact 3.5 Database with an Application.</p>
</blockquote>
<p>However, the 'for more information' link on msdn doesn't actually give any more information.</p>
<p><em>So my question is:</em></p>
<p>How does the |Data Directory| macro translate at run time? For WinForm apps, it seems to just give the location of the executable. Or is it more complicated than that?</p>
http://stackoverflow.com/questions/1660502/share-a-connection-string-between-multiple-web-projects0Share a Connection string between multiple web projectsKaydoo2009-11-02T10:35:37Z2009-11-02T10:50:36Z
<p>OK I have two web projects WebProject1 & WebProject2. Both require database connectivity so this is all in a C#.NET project called Common.</p>
<p>Now my question is currently the connection string for both is the same and at the moment it's hard coded into the DB class (In the Common project), but I want to move it out to a config file.</p>
<p>I would really like to have a config file in the Common project with the connection string in which both web projects then use. Is this possible, and if so how?</p>
http://stackoverflow.com/questions/1359579/classic-asp-sql-server-2008-connection-string-using-windows-authentication1Classic ASP - SQL Server 2008 Connection String using Windows AuthenticationNathan Taylor2009-08-31T21:49:54Z2009-10-30T11:51:46Z
<p>This should be painfully simple, but I cannot come up with a working connection string for a local copy of SQL Server 2008 using Windows Authentication. I've tried using the Data Link Properties tool to create a connection string and it has no problems connecting, but when I copy paste the generated string into my ADODB.Connection object's ConnectionString property I get all sorts of fun and different errors.</p>
<pre><code>Set conn = Server.CreateObject("ADODB.Connection")
conn.ConnectionString = "SQLNCLI10.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=climb4acure;Data Source=(local);"
</code></pre>
<p><code>Microsoft OLE DB Service Components (0x80040E21)
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.</code></p>
<p>I've tried a variety of similar connection strings but I cannot find one that will work with Windows Authentication. Can someone point me in the right direction?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1613864/cannot-open-user-default-database-login-failed-error0cannot open user default database. login failed errorqueandans2009-10-23T14:31:53Z2009-10-28T12:45:56Z
<p>Hi,</p>
<p>I am getting this "cannot open user default database. login failed" error. What I did was using ORM to create DataContext, in the code first call TableExists function to check if the version_tbl existed, if not, then call scripts to exec sql commands to create version_tbl. Then create a new dataContext, but problem is after the call I am getting this error on dataContext entity. If I remove the TableExists call, then dataContext creation is fine or move the dataContext creation before the TableExists call, but then the problem occurs in the TableExists call when it tries to connect. Seems like I can only connect once. Anyway I can call TableExists then able to create dataContext?</p>
<p>Below is my code sample</p>
<p>static bool TableExists(string tableName)
{</p>
<pre><code> using (SqlConnection connection = new SqlConnection("Data Source=localhost\\SQLEXPRESS;Initial Catalog=planning;Integrated Security=True"))
{
string checkTable =
String.Format(
"IF OBJECT_ID('{0}', 'U') IS NOT NULL SELECT 'true' ELSE SELECT 'false'",
tableName);
SqlCommand command = new SqlCommand(checkTable, connection);
command.CommandType = CommandType.Text;
connection.Open();
bool retVal = Convert.ToBoolean(command.ExecuteScalar());
return retVal;
}
</code></pre>
<p>}</p>
<pre><code>myFunc ()
{
if (!TableExists ("version_tbl"))
{
// call scripts to create version_tbl
}
DataContext ctx = new DataContext ();
</code></pre>
http://stackoverflow.com/questions/1629643/reg-expression-in-c0Reg Expression in C#subramani2009-10-27T09:29:21Z2009-10-27T09:44:27Z
<p>Hi All,</p>
<pre><code><add key="Key1" value="Provider=SQLOLEDB.1;data source=serveripaddress;Initial Catalog=DB1;user id=uid;Password=***"/>
</code></pre>
<p>I gave the above string,I want to get the serveripaddress,DB1,uid and **** these values from that string.</p>
http://stackoverflow.com/questions/1629532/connectiong-from-c-to-mysql-without-any-third-party-components0Connectiong from C# to MySQL without any third party components?Petr2009-10-27T09:03:29Z2009-10-27T09:09:22Z
<p>Hi,
I was always connecting to SQL which was simple, but now I would need to connect to a MySQL server. I thought System.data.odbc connection will work, but it doesnt connect. I do not udnerstand whather I really need to download and install any third party stuff like Connector or even MyODBC, I thought ODBC in .NET is enough. Could you please advice?</p>
<p>So far I am using:</p>
<pre><code> string ConString = @"driver={MySQL ODBC 3.51 Driver};server=localhost;database=db;uid=band;pwd=letmein;";
dbconn.ConnectionString = ConString;
dbcon.Open();
</code></pre>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/891873/how-to-read-xml-spread-sheet0How to Read xml spread sheetCshah2009-05-21T08:19:06Z2009-10-27T05:29:12Z
<p>Hi All,
I have a 3rd Party tool that generates an xml spreadsheet (*.xls). I have another program that reads this spreasheet and processes it. The content of the generated xml spreadsheet is a table with 5 columns and my program runs select queries on them. I m facing an issue while opening a connection to the generated spreadsheet. It says "{"External table is not in the expected format."}". My Connectin string is "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + excelFileName + ";Extended Properties=\"Excel 8.0;HDR=YES;\""; Do i need to change anything to this string ?
I tried using a dataset and calling dataSet.ReadXml(excelFileName); But the dataset doesnt contain my table. Any inputs on how to read an xml spreadsheet ?</p>
<p>Thanks for your time,
CS</p>
http://stackoverflow.com/questions/1625046/hibernate-connect-to-mysql-without-username-or-password0Hibernate: Connect to MySQL without Username or Passwordxeon2009-10-26T14:13:48Z2009-10-26T16:16:02Z
<p>I am developing a hibernate application that connects to a MySQL database. </p>
<p>The customers would like to only specify a connection string, ie:</p>
<pre><code>jdbc:mysql://username:passwd@server:port/db_name
</code></pre>
<p>However, Hibernate will not connect using just this string. It also wants the username and password connection properties set. Is there any way around this?</p>
<p>Thanks</p>