Tagged Questions

4
votes
3answers
758 views

Best practices re sharing IDbConnection or connection string/factory in your .Net code

Hi guys, I'm wondering what would be the best prectice regarding mainataining connections to the database in .Net application (ADO.NET but I guess the practice should be the same for any data layer). …
2
votes
1answer
559 views

LinqToSql dbml dynamically switch connectionstring

Greetings All, We have two databases, DEV and STAGING. They are for the most part identical. I have an app settings tag in the Web.Config call it "mode", and two connectionstring entries. If mode=DEV …
2
votes
2answers
270 views

How do I get the Application Name from either SQL Server connection string or the IIS application name using C#?

Hi All, How do I get the Application Name from an SQL Server connection string in the web.config file. I want to use to log escalated error messages from a web application into the Windows Event …
2
votes
3answers
291 views

How do I tell when there are too many SQL connections?

I am creating a website that I want to offer as a service. Each customer will have their own database, and each site requires two databases. If I have 100 active customers and they are all working in …
2
votes
6answers
3k views

C# Retrieving correct DbConnection object by connection string

I have a connection string being passed to a function, and I need to create a DbConnection based object (i.e. SQLConnection, OracleConnection, OLEDbConnection etc) based on this string. Is there any …
2
votes
3answers
933 views

How can I connect to an Oracle database as SYS using an ADO connection string?

I am trying this: Provider=MSDASQL.1;Persist Security Info=False;User ID=sys;Password=pwd;Initial Catalog=DATABASE;Data Source=OdbcDataSource;DBA Privilege=SYSDBA But I get the error: …
2
votes
2answers
478 views

How do you specify the port number in a oledb connection string to SQL server 2005?

Just found this out, so i am answering my own question :) Use a comma where you would normally use a colon. This can be a problem for named instances, as you seem to need to specify the port even if …
1
vote
1answer
86 views

Change Web.config connectionStrings without resetting sessions

How can <connectionStrings> in Web.config be changed without resetting sessions of logged in users? I'd like to keep using <connectionStrings> instead of creating a custom section because …
1
vote
2answers
93 views

How to Read DB Connection String from System Registry?

We are using ASP.NET 3.5 and C# 3.0. According to the client's requirement, the database connection string need to be stored in system registry.During the connection establishment,we have to read the …
1
vote
1answer
57 views

DB connection failed while testing

Hi, I have an asp.net mvc application, which uses the default user database. It all works pretty well, but I would like to create some tests for it. I Have a test project, I immediately stumble upon …
1
vote
4answers
150 views

Problem with connection string to SQL express

Hello, I get this error message when i try to using sql express: An attempt to attach an auto-named database for file C:\Users\Name\Documents\Visual Studio …
1
vote
5answers
381 views

SQL Server 2005 SQL Authentication Connection String

Hello, I'm building an application that connects to SQL Server 2005. It currently uses Windows authentication, but I'd like to switch to SQL Authentication (I believe it is also sometimes called Mixed …
1
vote
3answers
241 views

Split a string by semicolons while accounting for escaped characters

Really simple problem: I want to split a connection string into its keyword / value pairs, so for example the following connection string: Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist …
1
vote
3answers
1k views

ASP.NET: How to create a connection from a web.config ConnectionString?

How do you construct a DbConnection based on a provider name? Sample provider names System.Data.SqlClient System.Data.OleDb System.Data.Odbc FirebirdSql.Data.FirebirdClient i have connection …
1
vote
3answers
140 views

How do I programmatically tell if a client machine has the Microsoft.Jet.OLEDB.4.0 as a valid provider?

I need to export data into an Access database. My code works, but it works with the assumption the client machine has the Microsoft.Jet.OLEDB.4.0 as a valid provider. I want to test to see if this …

1 2 next
15 30 50 per page