A string containing information necessary for connecting to a service, usually database.
3
votes
0answers
1k views
when to specify providerName=“System.Data.SqlClient” in a connection string
I had an issue with a windows service running under [NT AUTHORITY\LOCAL SYSTEM] whereby the service could not connect to a database.
Login failed for user 'NT AUTHORITY\LOCAL SERVICE'. Reason: ...
2
votes
0answers
63 views
How can I determine the data source value to a connectionstring in sql server 2012 when using (LocalDb)\v11.0 in a workgroup and not a domain?
Environment: 64 bit Windows 8
Platform: Visual Studio 2012, SQL server 2012, IIS8
Language: C#
I'm currently creating an asp.net web application using a tutorial from msdn. The site runs fine and ...
2
votes
0answers
204 views
Inject custom connection string into Entity Framework's DbContext
I want to inject a custom connection string into my EF context instead of using the connection string in my web.config. The idea is to move all database related logic off of my MVC project into a ...
2
votes
0answers
66 views
Excel connection string for Excel created on Mac
I've been looking everywhere for the answer to this question. I have a working application that imports Excel files using Microsoft.Jet.OleDB.
Now it seems that when a user on a Mac uploads an Excel ...
2
votes
0answers
2k views
Visual studio 2012 error. cant find .net data provider
I am currently developing a project in MVC3 Visual Studio 2012. I am connecting to an external database but when I try to add a new controller I get this error.
Unable to retrieve metadata for ...
2
votes
0answers
599 views
How to use Settings.settings for entity framework connection strings?
I'd like to store the Entity model connection string in the app.config using the same approach used by old Typed DataSet. Both use the same section: <connectionStrings>.
Entity saves the ...
1
vote
0answers
53 views
Change default database with ASP.NET Web Application
I have created a C# ASP.NET web site in Visual Studio 2010. Pretty much all of the other kinks have been worked out, but the site is to have a database that stores certain user data. I have this DB ...
1
vote
0answers
20 views
Using different environment in development and production with SSIS
My SSIS (2005) package uses variables and expressions to set some values at run-time (e.g. connection string, database name)
I have found out that the package validation does not use the expressions ...
1
vote
0answers
35 views
Error connecting to SQL Server via alias from local IIS7
Just wondering if anyone has run into this before. Had a few devs look at this, and none of us can figure it out.
I have an ASP.NET Web Forms app connecting to a Sql Server db via an alias using ...
1
vote
0answers
23 views
how do I set the data location with SqlServerCE without naming the sdf?
I'm using Sql Server Compact Edition v4 with EntityFramework v5. I pass the name of the sdf file into the constructor of my various DbContext inheritors. It works fine but always creates the files in ...
1
vote
0answers
100 views
XSD DataSet — using connection string from another project at design-time as well as run-time
We have a VS2010 solution that includes a web app (the startup project) and a class library for data access. The connection string is stored in the web app in a connectionString.config, which is ...
1
vote
0answers
394 views
Windows authentication in connection string (ASP .Net Application)
I had a common windows account for App and DB servers say ApplicationAdmin. now i want to set both servers with different windows account. i created two windows account on same domain ApplicationAPP ...
1
vote
0answers
145 views
ODBC Connection with integrated security PHP and MS SQL Server
I need the guidance help on ODBC connection string in PHP, which I am using to connect to MS SQL Server.
<?php
$server = 'UKEMO03';
$database = 'mtpFetch';//the database to connect to
...
1
vote
0answers
113 views
Code first windows azure connection string
Here is my connection string:
<add name="FollowUpDatabase" connectionString="Server=tcp:yncm4e4uxp.database.windows.net,1433;Database=[FollowUp];User ...
1
vote
0answers
63 views
The web publishing extension is not installed which is required to publish
I was tring to deploy an ASP.NET Web Application to a Windows Azure Web Site by following the tutorial through this link: https://www.windowsazure.com/en-us/develop/net/tutorials/get-started/
After ...
1
vote
0answers
133 views
Invalid value for key attachdbfilename
I try to run my asp net application in godaddy webserver and get error:
Exception Details: System.ArgumentException: Invalid value for key ‘attachdbfilename’.
My connection string:
...
1
vote
0answers
278 views
excel data to datagridview through dataset using OLE skips the initial blank rows and blank columns
I am using OLE related API's for reading data to DataSet and later to view in DataGridView. The source is an excel file. If the first row or column is empty than that row or column is getting skipped. ...
1
vote
0answers
134 views
One connectionstring for SimpleMembership
I have an ASP.NET MVC 4 web app and I'm defining connection strings in my web.config. I'm using SimpleMembership which by default wants to use a connection string with the name DefaultConnection
I'm ...
1
vote
0answers
49 views
Does SQL Compact Edition 4.0 Solve “Permission Denied” bug on different OS version
I previously asked a question about Permission denied for SQL Server CE on Different OS versions when connection string set to readonly but it seems there is no answer
to my question and i think this ...
1
vote
0answers
506 views
DSN-Less connection in VBA to two different iSeries LPARS generates Error 3011 to one of them
This question is not about dsn-less connection strings in MS Access per se (which I can build successfully). The following string worked just fine last week when connecting to our iSeries from MS ...
1
vote
0answers
112 views
Change connection string when install Outlook Add-In
I have an outlook addin(created with VS 2010 and C#) that it's connected to a database server but I'm facing a problem, when I'm debugging my app I have the config file which contains the actual ...
1
vote
0answers
183 views
C# Mysql - The given key was not present in the dictionary
I am trying to execute the following code:
_cmd.CommandText = "SELECT * FROM category";
MySqlDataReader ret;
_cmd.Connection = _con;
_con.Open();
ret = ...
1
vote
0answers
597 views
calling adodb open changes connection string
I just got pulled into a project where we are converting old VB6 applications to .NET. Within the application they are passing around the ADODB connection object and grabbing the existing connection ...
1
vote
0answers
366 views
CodeFirst EF and connection string by Adam's Freeman book
I'm learning the asp.net mvc 3 of the book of Adam Freeman. In the example, a SportsStore applications using CodeFirst approach. When solution run throws exception: Invalid object name 'dbo.Products'.
...
1
vote
0answers
207 views
Linq Dynamic ConnectionString Application Settings
I want to read my connection strings from the Web.config or App.Config file. I attempted to follow the advice in another Stackoverflow post.
The suggestion was to:
Set Application Settings in the ...
1
vote
0answers
293 views
Entity framework Data Access Layer project's connection string
I have this project made by someone else that's I'm refering in mine; it's a data access layer using Entity Framework.
So of course, when I compile my project, I have my executable, with its .config ...
1
vote
0answers
903 views
can not connect to SQL database on amazon EC2 - microsoft project server database
I am using SQL managment studio 2008 running on an Amazon EC2 machine. I am unable to connect to the database in my asp.net application. The EC2 instance has been set to accept connections over the ...
1
vote
0answers
82 views
How can I change the connection node across a solution of SSMS scripts?
The background: I work with an SSMS solution (2008 R2, but doubt that matters) that has hundreds of .sql files. I work on it in several different environments, using a (local) a (local)\namedinstance, ...
1
vote
0answers
118 views
Relative Connectionstring Browsing
For a application, I need a relative Connectionstring that I can also run the application on other computers.
So I searched a lot how to realise that an found the following:
con.ConnectionString =
...
1
vote
0answers
1k views
Connection string to Oracle 11g from MVC 3?
I'm trying to connect to Oracle 11g from a clean install of MVC 3 (.NET) but I can't. I always get the same Exception: "ProviderIncompativeException".
I'm trying it from a clean installation of ...
1
vote
0answers
264 views
C#: Bind data controls with custom connection string at design time?
My application has a database property page which includes settings for server, database, user id, password. I have a custom EncryptedSettings class (derived from ApplicationSettingsBase) which ...
1
vote
0answers
28 views
Best approach for migrating connection strings to windows Auth
We have 8 IIS machines and 2 SQL Server 2008 machines running several aspnet apps. We have desktop apps that connect to the DBs as well. We want to get rid of credentials stored in config files and ...
1
vote
0answers
266 views
Excel OLEDB /Jet connection strings & %APPDATA%
I have what is likely a common scenario. I have an MS-Access application split into front-end and back-end files. I want to set up users with an Excel spreadsheet that connects to data on the ...
1
vote
0answers
325 views
Compact Framework 3.5 - DataSet Run-Time Connection String
I found an MS article that says I can use the ConnectionString property of the .XSD file to change the DataSet's ConnectionString at run-time.
This sets an element in the .csproj file called ...
1
vote
0answers
584 views
Specify ConnectionString for MVC DataContext globally
I have an MVC3 Application that allows a user to choose the database they want to use on initial login.
The various connection strings are available in the web.config
I would like every DataContext ...
1
vote
0answers
453 views
Settings designer file complains when protecting configuration for connectionStrings in App.Config in VS 2010
I am trying to encrypt Configuration Information Using Protected Configuration in Visual Studio 2010.
I have the following info speicifed in the App.Config file:
<connectionStrings ...
1
vote
0answers
222 views
DSNless connection for Aruna DB?
Right now we are using Fastpath ODBC DSN connection method to access our "ARUNA" Database. Our development platform is C# on the .NET Framework.
We are in need of connecting the DB without using DSN. ...
1
vote
0answers
477 views
System.Data.SQLite Design-Time: DB Connection Error
I am having a strange error with VC# Express and System.Data.SQLite's Design-Time Database Explorer. You can see the error itself at http://tinypic.com/r/rcsl5g/6. What happens is, I go to Tools -> ...
1
vote
0answers
640 views
How can I change the default connection string settings for VS server explorer
I use SQL Server 2005 express and desing the DB in server explorer in VS2008. Due to various reasons I have disabled user instances. Now every time I use server explorer I need to modify the ...
0
votes
0answers
12 views
Remove empty rows in excel via connectionString
Im using ConnectionString to connect an Excel file to read data. I use this query:
SELECT * FROM [SHEET1$]
My problem is when user set a value in a new row and later delete it, my query returns me ...
0
votes
0answers
24 views
Microsoft Excel Data Connections - Alter Connection String through VBA
I have a fairly straightforward question. I am trying to find a way to alter and change a connection string for an existing data connection in an excel workbook through VBA (macro code). The main ...
0
votes
0answers
17 views
Using VS2010 Data Connection Tool for Users
since the code for this small ui is free, I'm trying to use it for a connection test tool.
Its working not bad, but unfortunately, it just builds the standard connections.
I add all, which can be ...
0
votes
0answers
29 views
function runs on scanner emulator, but not scanner itself (C#, SQL)
I'm developing an add-in for a scanner. I've run into problems with a specific function that I'm writing. The problem seems to be with my connection string. The code runs fine on the scanner ...
0
votes
0answers
42 views
“The underlying provider failed on Open” error with one specific query
i am trying to debug my code i am getting error here in this line,
var fsr = dbContext.FinalScoreReports.Where(c => c.ConsultantID == cId && c.TargetProjectID == ...
0
votes
0answers
39 views
Windows Azure Cloud Connection String
I am having a trouble in between azure local and azure cloud connection string. so, can anyone suggest me how to setup cloud connection string in .csdef and local.cscfg and cloud.cscfg. file. How to ...
0
votes
0answers
46 views
What is the error in this connection string in vb.net?
I have the following connection string
<add name="portal_ConnSql" connectionString="Data Source=GFO-SQL03;Initial Catalog=PortalDB_V2;uid=Portal_Usr;Password=20!!P0rt@!" ...
0
votes
0answers
51 views
Connect to FileMaker Database from Grails app
I can't achieve to connect with a FileMaker database when I use the fmjdbc driver. I put the jar library in the /lib folder and I try connect with the next connection params:
dataSource {
pooled ...
0
votes
0answers
54 views
How To Set Entity Framework's ConnectionString's Settings for other computers
I'm developing a program for a customer who has a mysql server. I dont have the mysql server information because of security then I have been developing it on mysql localhost..
So I sent the program ...
0
votes
0answers
23 views
Request time out even after setting the pooling option for connection string
Timeout expired. The timeout period elapsed prior to obtaining a
connection from the pool. This may have occurred because all pooled
connections were in use and max pool size was reached.
Hi ...
0
votes
0answers
28 views
How to set up the connection string after I publish the website in the IIS?
I have two computer at home (one for develop, and the other server as both the IIS web server and the database server with SQL Server Express 2010 installed). I can use the form based Aspmembership ...





