0
votes
2answers
34 views
What is the point of “Initial Catalog” in a SQL Server connection string?
Every SQL Server connection string I ever see looks something like this:
Data Source=MyLocalSqlServerInstance;Initial Catalog=My Nifty Database;
Integrated Security=SSPI;
Do I need the Initial …
0
votes
2answers
21 views
Is there any way to set lock_timeout on a database or connection string level?
In SQL 2005/2008 is there any way to set default lock_timeout values.
Anything at the server, database, or connection string level would be great.
0
votes
1answer
15 views
Pointing a ConnectionString to a special folder via Visual Studio Designer
I'm trying to set a DataAdapter connection string to point to %APPDATA% from within Visual Studio designer by editing the DataAdapter properties. I cannot seem to be able to use that moniker on the …
2
votes
2answers
111 views
Have you ever had this error?
microsoft visual studio opens my table using dataset designer
but i cannot open my table using the same connectionstring.
my database is DBase IV.
and this is the connectionstring
…
0
votes
1answer
24 views
How do i detect the provider from a user-specified connectionstring?
My application needs to do a certain query against a user-specified connectionstring. The query will need some parameters, so I was thinking of using the DbProviderFactory , in combination with …
2
votes
3answers
58 views
asp.NET - how to make sure web.config is used for conectionstring (rather than app.config)
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 …
0
votes
3answers
95 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 …
0
votes
2answers
22 views
Application Unable To Connect to SQL Server 2008
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.
I went to put the application on my production server …
0
votes
2answers
20 views
Connecting to SOTAMAS90 ODBC ?
How do I connect to Mas90's file using their ODBC that they setup - SOTAMAS90? how do I do this in vb.net ?
0
votes
3answers
93 views
Is it possible (and how) to add ConnectionString to app.config at runtime in C#?
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 …
2
votes
7answers
150 views
connection string in web config
I have a web application which i make on my local host and publish it on different servers.
in the web config of this application i have connectionstrings property like:
<connectionStrings>
…
1
vote
2answers
53 views
How to see the connection string used to connect to SQL Server
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.
Many times I deal with complex systems in which I see …
-5
votes
2answers
65 views
Problems connecting to my database
I am trying to connect my DB to a project in c# and it is not working? any ideas??
static string connectionString =
"Data Source=ESTER-PC;Initial Catalog=fridge;
Integrated …
0
votes
1answer
60 views
Connection Pooling and Multiple Connection Strings
An ASP.NET 3.5 application has two connection strings:
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; …
1
vote
3answers
127 views
.net desktop app - how do store/change application settings or connection strings?
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 …
