Tagged Questions
A string containing information necessary for connecting to a service, usually database.
25
votes
4answers
11k views
How to configure ProviderManifestToken for EF Code First
I have a asp.net MVC3 project using EF Code First. For my unit testing I have been using SqlServerCE 4.0 and SqlExpress 2008. Both have worked perfectly with EF generating my database as expected.
...
24
votes
13answers
10k views
Connection string hell in .NET / LINQ-SQL / ASP.NET
I have a web application that comprises the following:
A web project (with a web.config file containing a connection string - but no data access code in the web project)
A data access project that ...
18
votes
3answers
17k views
keyword not supported data source
I have an asp.net-mvc application with the default membership database. I am accessing it by ADO.NET Entity Framework.
Now I want to move it to IIS, but several problems showed up. I had to install ...
17
votes
3answers
2k views
Can I stop the dbml designer from adding a connection string to the dbml file?
We have a custom function AppSettings.GetConnectionString() which is always called to determine the connection string that should be used. How this function works is unimportant to the discussion. ...
15
votes
1answer
584 views
ODBC problems in SQL 2000 --> 2005 Upgrade
This wiki post outlines both a problem and a solution. I wanted to post this for others that may be having similar problems, as I couldn't find anything specifically to solve this problem elsewhere.
...
15
votes
1answer
6k views
How to check if connection string is valid?
i'm writing an application where user provides a conenction string manually and i'm wondering if there is any way that i could validate the connection string - i mean check if it's proper and if the ...
15
votes
7answers
9k views
How do I set a connection string config programatically in .net?
I'd like to set a connection string programmatically, with absolutely no change to any config files / registry keys.
I have this piece of code, but unfortunately it throws an exception with "the ...
12
votes
1answer
10k views
SQL Express connection string for Entity Framework Code First
I am working in Visual Web Developer 2010 Express, and using the Entity Framework Code First CTP. I am able to do this with the new SQL CE but I am unable to find a connection string to work with SQL ...
12
votes
2answers
6k views
Point to localhost\sqlexpress using only localhost
Working on a common codebase, one developer is running SQL Server Express 2005 and the other 2 are running SQL Server 2005. Everything is working fine, but the connection strings differ. To maintain ...
11
votes
5answers
3k views
Connection String Best Practices
What is the best way to manage connection strings in a web application, from a security standpoint? I've done it several different ways. I've stored them as plain text web.config setting keys. I've ...
11
votes
4answers
12k views
Why does an Entity Framework Connection require a metadata property?
I switched my DAL from using LINQ over to Entity Framework. Because my application connects to different databases depending on the current user, I need to dynamically create the DataContext at run ...
11
votes
3answers
1k views
What is the best way to centralize and secure connection strings?
What is the best way to centralize and secure the connections strings used by applications? In my environment we have many internal applications. Each application requires one or more connection ...
8
votes
3answers
2k views
.Net Encryption
Similar questions have been asked here, but their answers are not enough to me.
What I would like to know is the definite approach to encrypting connection strings in a config file. Here are my ...
8
votes
4answers
2k views
Best practices re sharing IDbConnection or connection string/factory in your .Net code
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). Should I ...
7
votes
3answers
223 views
Where are the really universal data links?
In the good old oledb times I used UDL files and the related wizard to check and create connection strings. Nowadays the connection strings you can create this way aren’t that universal any more. The ...
7
votes
2answers
573 views
app.config and 64-bit machines
I have an app that works fine on 32-bit systems, but fails on XP 64 bit systems. I've tracked it down to the connection string defined in my app.config thus:
<connectionStrings>
...
7
votes
6answers
1k views
winforms connection properties dialog for configuration string
Is there a way to display the connection properties dialog for connection string browsing(for database) in run time?
As I want the user to be able to connect to various database using the GUI.
The ...
7
votes
6answers
7k views
Linq to Sql - Set connection string dynamically based on environment variable
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, ...
7
votes
2answers
4k views
Connection String to Connect to .MDF
I've created a new project in VS2008, and added a .MDF file to the project. This is the first time I've tried to use the MDF files and .SQLEXPRESS databases (I've always used extenal Oracle servers ...
7
votes
3answers
2k views
SQL Server: Modifying the “Application Name” property for auditing purposes
As we do not implement the users of our applications as users in SQL server, when the application server connects to a database each application always uses the same credentials to attach to each ...
7
votes
3answers
672 views
Is there a difference between (local), '.' and localhost?
I've used all three of these when making local programmatic connections to databases. Is there any real difference between them?
7
votes
6answers
1k views
Prompt for Database Connection String
I would like to offer a database connection prompt to the user. I can build my own, but it would be nice if I can use something that somebody else has already built (maybe something built into Windows ...
6
votes
0answers
60 views
Why does this database connection fail when “Application Name=application” is in the connection string?
We're writing a multi-tenanted Silverlight application. The user logs in using Windows Forms authentication and we pull the connection string for that user from a table. The string was of the form:
...
6
votes
2answers
443 views
ASP.Net MVC3 SQL Connection String
I am creating an app on APPHARBOR and I have an entity model for querying the SQL server. The following String is givving me error:
<add name="TraxzDBEntities"
...
6
votes
3answers
3k views
Possible to set default schema from connection string?
With SQL Server 2005 and 2008 is it possible to set the default schema from the connection string? It'd be a lot easier if we didn't have to manually set the schema with SQL code.
6
votes
2answers
3k views
Escape quote in web.config connection string
I have a connection string in my web config:
<add name="MyConString" connectionString="Server=dbsrv;User ID=myDbUser;Password=somepass"word" providerName="System.Data.SqlClient" />
As you ...
6
votes
3answers
308 views
How to hide connection string, user name, pw when using source control?
I'm working on a small side-project and I'm using connection strings and also api keys and values that should not be seen or used by other people. I use a public GitHub account for source control. ...
6
votes
4answers
422 views
How to configure database connection securely
Similar but not the same:
How to securely store database connection details
Securely connecting to database within a application
Hi all, I have a C# WinForms application connecting to a database ...
6
votes
2answers
3k views
the best way to connect sql server (Windows authentication vs SQL Server authentication) for asp.net app
I have a database and a site having forms authentication. It is working fine with VS2008. This time, I am using "Trusted_connection =True". But when it is opened from outside or directly from browser ...
6
votes
4answers
251 views
Where to store a connection string used by many applications in the same machine?
At my shop we are used to store connections strings in the .config file. But when we had to update it in several applications in the same machine someone gave the idea of storing it on the windows ...
6
votes
3answers
3k views
What's best way to secure a database connection string?
I am writing a set of database-driven applications in PHP. These applications will run on a Linux server as its own user. Other users will likely be on the system at times, but have very controlled ...
5
votes
6answers
143 views
Why do we need connection strings?
When we connect to a database in ASP.NET you must specify the appropriate connection string. However most other instances where data is to be specified is done within an object.
For example why ...
5
votes
2answers
1k views
Wait! which config file? (Entity Framework Connection String)
So, I created my entity model in a separate class library. I had to add the connection string to the app.config file of that class library. Then I added a ref for that project in my web application. I ...
5
votes
1answer
1k views
Readonly connection string to an access database
I'm trying to connect to an Access database file using a System.Data.OleDb.OleDbConnection. I need to connect in readonly mode because another application uses it at the same time. I can connect to ...
5
votes
1answer
258 views
Encrypting connectionStrings section - utility for app.config
Is there a utility that will encrypt a named configuration section (or just the connectionStrings section) in an app.config file in a similar manner that one can use aspnet_regiis with web.config ...
5
votes
3answers
441 views
SQLMetal generates classes but not parameterless constructors
I need to regularly refresh my Linq To SQL classes; Yes, shame on me for not thinking about my data schema thoroughly enough, bad developer, ad nauseum. I found SQLMetal almost does the trick, but ...
5
votes
3answers
459 views
How can I access SQLite with C#?
I'm trying to get connected to my Sqlite database programmatically using C#/ASP.NET:
string requete_sql = "SELECT * FROM USERS";
connStr = @"Data Source=C:\LocalFolder\FooBar.db;";
using ...
5
votes
2answers
2k views
SQL Server Express 2008 using (local) in connection string
Is it possible to connect to a SQL Server Express 2008 database in ASP.NET with a server name of (local) like "server=(local);integrated security=SSPI;database=DBNAME"?
I'm working with another ...
5
votes
3answers
1k views
How to connect to mirrored SQL Server after failover?
I set up a database mirroring and then used this connectionstring to connect to it:
Data Source={0};Failover Partner={1};Initial Catalog=AdventureWorks;
Integrated Security=True;
After ...
5
votes
4answers
966 views
Connection string security in .net desktop application
i'm developing a .net winforms desktop application intended to be run at several bank's branches as a backup application whenever the main one (a web application) is unavailable due to connection ...
5
votes
3answers
15k views
Help me create a jTDS connection string
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 ?
I'm trying to do like ...
5
votes
2answers
4k 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 ...
5
votes
4answers
37k views
How to fix “The ConnectionString property has not been initialized”
When I start my application I get: The ConnectionString property has not been initialized.
Web.config:
<connectionStrings>
<add name="MyDB"
connectionString="Data ...
5
votes
5answers
546 views
Accessing Connection Strings via a Web Service
The idea of storing connection strings in a data base is a perverse idea, but please hear me out first. We all know that it’s best practice to encrypt connection strings in the web.config file, but ...
5
votes
3answers
3k views
With System.Data.SQLite how do you specify a database file in the connect string using a relative path
Wanting to deploy my project on different servers I would prefer to be able to specify a connect string using a relative path. I can't seem to get that to work and want to know if there is some trick ...
5
votes
2answers
396 views
Fast database access test from .Net
What would be a very fast way to determine if your connectionstring lets you connect to a database? Normally a connection attempt keeps the user waiting a long time before notifying the attempt was ...
5
votes
8answers
5k views
What is the best way to store connection string in .NET DLLs?
The application my team is currently developing has a DLL that is used to perform all database access. The application can not use a trusted connection because the database is behind a firewall and ...
4
votes
1answer
57 views
Error connecting MS SQL Server 2005 View with MS Access 2003 query
Problem: Could not find installable ISAM
I am executing a query from MS Access in order to pull information from MS SQL Server 2005.
When I attempt to open a linked ODBC connection to the table ...
4
votes
2answers
64 views
How to make sure the connection string is for a local machine
I'm creating a client application that connects to MS SQL Sever via ADO.NET. I need a user to specify a connection string to connect to a database. However users should only connect to SQL Server ...
4
votes
3answers
117 views
Is it possible to add Data source connection wizard in my app?
Data source connection wizard is very convenient tool. Can I add it to my app to allow user choose data source themself in easy way?