0
votes
0answers
95 views

Database connection error from WPF app

I am getting an error when I attempt to connect to a database using the following connection string from my WPF app. <?xml version="1.0" encoding="utf-8" ?> <configuration> ...
1
vote
1answer
105 views

Connection Per Request with ADO.net , yes or no?

Is it ok to open a IDbConnection to a database and use it during all called methods in the current request and then allow a DI container to dispose it in Application_EndRequest, just like "Context Per ...
1
vote
1answer
250 views

connect DB2 using c#

I have created an add-in project in visual studio having some windows form and through that I have to connect to the DB2 database installed on some other system. I have the machine name of the server, ...
0
votes
1answer
691 views

Close database connection on SQL Server using ADO .NET

I'm connecting to database using ADO .NET: Dim conn As SqlConnection Dim sqlcmd As SqlCommand Dim da As SqlClient.SqlDataAdapter Dim table As DataTable conn = ...
-1
votes
1answer
2k views

System.Data.SqlClient.SqlException: Login failed for user 'sa'

I have launched my site in IIS 7.5.There was an issue in the site and i tried to solve it.after doing the changes i build the solution and tried to check out in the site.At that time i got an ...
0
votes
1answer
215 views

MySql permanent connection error `Unable to connect`

-edit- nevermind, it was the bindaddress. But maybe you can explain why my php apps were able to connect? Or how to make it so i can connect via IP address OR 127.0.0.1. I certainly didnt configure, ...
1
vote
2answers
210 views

Why is my code leaking connections?

Question: Why is the following code leaking connections ? public System.Data.DataTable GetDataTable() { System.Data.DataTable dt = new System.Data.DataTable(); string ...
0
votes
0answers
312 views

ADO error 16389 with local access SQL Server, database connection failing when using wireless card

We are sometimes seeing a database base engine connection problem with a C++ point of sale application that is using ADO to access a Microsoft SQL Express Server 2008 database. The error code we are ...
0
votes
0answers
39 views

Connection String for RBase database

Does anyone know what kind of Connection string I can use to connect to an RBase v5.1 database? Apparently it is an ODBC Complaint database but I have not been successful so far.
-4
votes
3answers
118 views

The connection inside function not called [closed]

this is my snippet , please help me why the con .open is not working inside the function tabledel i want to delete the table once i press the button , the connection gets opened for the first time ...
0
votes
1answer
480 views

Connection manager to accept either of ADO.NET or OLEDB connection types

Please look at the following piece of code. It will only accept the ADO.NET connection type and what I want to do is to make it work for OLEDB as well. In other words, if the ConnectionManager is ...
9
votes
2answers
2k views

DbConnection vs OleDbConnection vs OdbcConnection

What are the main advantages of each of the above database connection methods in C# in terms of connecting to multiple possible data sources (being database agnostic)? Also in terms of performance ...
1
vote
3answers
1k views

Error connecting to SQL Server 2008 R2 Express

I have installed SQL Server 2008 R2 Express on Windows 7. When I run a web project in VS2010 I receive the following error: A network-related or instance-specific error occurred while ...
0
votes
2answers
419 views

When application close, will DB connection close instantly?

This is something I has been always wonder.... will it? Because whenever I write code to use DB connection, I always somehow have to ensure is closed before process to next piece. But when if the I ...
12
votes
1answer
8k views

ExecuteReader requires an open and available Connection. The connection's current state is Connecting

When attempting to connect to MSSQL database via ASP.NET online, I will get the following when two or more people connect simultaneously: ExecuteReader requires an open and available Connection. ...
0
votes
1answer
168 views

Error concerning the database connection when website is online

I have a problem, i'm building a website. FIrst what i made was a first form page, which asks user to fill in information and to add that inforamtion to the MySQL database. On that form, there is one ...
3
votes
1answer
535 views

What is the difference between using a DataContext class and SqlConnection?

This might be a very vague question but I guess I don't really understand what is going on. I asked a question earlier where I was told a simple way to "bind data to objects" is to just run a ...
2
votes
3answers
10k views

Connect ASP.NET WebSite to SQL Database

I am currently trying to establish a connection between an ASP.NET web site project and a Database built by SQL Server 2008 R2. The way I am required to do so is to use the connectionString from the ...
0
votes
2answers
728 views

Get Connection String Without Password Value in C#

I try create method for get the connection string value but without value for password, or show password like * character. I need used it in logging. I use ConnectionStringBuilder for Oracle, ...
1
vote
1answer
2k views

SqlException during the pre-login handshake

I ported my SQL Server DB from local to production environment and suddenly faced the following error during connect System.Data.SqlClient.SqlException: A connection was successfully established ...
0
votes
1answer
1k views

Can't connect to Oracle using Windows Authentication with ODP.NET

I've configured my Oracle Database for NTS Authentication and set my Windows Login up as a user in the database. I'm able to log in to the Database with the command sqlplus /. I'm also able to ...
3
votes
2answers
570 views

Calling Connection.Close/Dispose in finaliser

I've always called Connection.Close in the finally block, however I learned today you aren't supposed to do that: Do not call Close or Dispose on a Connection, a DataReader, or any other managed ...
1
vote
2answers
552 views

Connect to SQL Server 2008 from C#

I am having problem in login. i have made a database in SQL Server 2008. After attaching the data base when i run my software in visual studio 2010, the login of my software fails. it says Invalid ...
0
votes
1answer
246 views

Is there any alternative that does not close a connection to ExecuteStoreCommand

We are talking for one ObjectContext per Request concept. (Web Application) WE dont close connection between Application_BeginRequest and Application_EndRequest. We have a single ObjectContext during ...
-1
votes
1answer
980 views

How to write ASP.NET script to connect to SQL Server [closed]

I'm new to ASP.NET, as subject, how to use asp.net to connection SQL Server... How to remote connect "localhost\Instancename", for example connect 192.168.0.2/sqlserver2
0
votes
1answer
72 views

Connection string cannot be created

I'm developing a website in that, i couldn't create connection string ,i have included all the required namespaces but when i create a string variable to store the connection it wont come in declaring ...
0
votes
1answer
283 views

Invariant names for different ADO.NET providers

For a proposed change in NHibernate drivers to make it easier to build and deploy NHibernate-based solutions (see this thread) we need to collect the invariant provider names of the following RDBMS: ...
0
votes
2answers
4k views

Connection string for default instance like for named instance

In my .NET application I am connecting to Microsoft SQL Server 2005 or 2008 database. User selects instance which the application shows it and then application should do something with this instance. ...
2
votes
2answers
407 views

ADO.net Connection Pooling

In the code below, the Provider object only has one instance of a DbConnection. Each reader will reference the same connection instance. According to the Microsoft documentation, the second reader ...
1
vote
2answers
16k views

How to connect to a SQL Server Compact from a .NET application?

I would like to create a WPF application that is using a local database. I have created a simple database and added it so I can see my database NameDB.sdf in my Solution Explorer. How do I connect to ...
0
votes
1answer
188 views

Does Ruby on Rails' ActiveRecord support “disconnected recordsets” (like ADO.net)?

Using Microsoft's ADO.net, one can you query database -> disconnect database connection -> query/manipulate locally -> connect again (re-synchronize local with database). I've found value in this as ...
2
votes
2answers
6k views

Named Pipes Provider, error: 40 - Could not open a connection to SQL Server?

In our project user using NHibernate 2.1.1 with SQL Server 2008 with .net 3.5. I am facing strange problem with SQL Server. We developed windows service, installed it and it was running fine for ...
0
votes
3answers
2k views

How to check if a database connection is still open in Ado.Net?

Is there a way to check if a database connection is open? I am trying to check the connectionState but it shows ConnectionState as Open even when database is down. private bool ...
0
votes
1answer
910 views

Scope of global temporary table relative to ADO.NET database connection?

SQL Server books online states the following about visibility (scope?) of temporary tables: Temporary Tables You can create local and global temporary tables. Local temporary tables are visible ...
1
vote
1answer
40 views

MS-Access 07 works the same way as MS-Access 03 on different machines or need installation?

I m creating a window application using MS-Access as my database since data volume is not large. I want to create it in accdb format i.e office 2007 then will it work with my application on any ...
2
votes
3answers
2k views

Access mdb file content from .net when mdb file has password

I am creating a window application in C# and was thinking of setting up a password on mdb file of MS-Access so that no one can open that file other than my window application or who so ever knows ...
1
vote
3answers
806 views

MySQLCommand BeginExecuteReader is missing an AsyncCallback parameter rendering it virtually useless

I'm hoping someone here might help me. The company I work for would prefer that I use MySQL instead of MSSQL. So I downloaded the latest driver (6.1) and am porting the DB layer. However I can not ...
1
vote
1answer
194 views

How are OLE DB connection strings mapped to DLLs?

How does the OleDbConnection constructor know what provider DLL (I assume it's a DLL) to call for a given provider name in the connection string? For example, in the following code... string cnStr = ...
1
vote
2answers
536 views

Oracle query fired off, then never returns

I have this problem in my ASP.NET application where I'm seeing some of my Oracle queries fired off to the server then not returning. Ever. It happens in several places in my app and I can't explain ...
13
votes
7answers
8k views

How to force a SqlConnection to physically close, while using connection pooling?

I understand that if I instantiate a SqlConnection object, I am really grabbing a connection from a connection pool. When I call Open(), it will open the connection. If I call the Close() or ...
2
votes
4answers
4k views

ASP.NET/ADO.NET: Handling many database connections inside a .NET Object?

We have a .NET object that does a lot of reading/writing with the database. Throughout the life cycle of this object (or the asp page that uses it), it may hit the database with a query/update ...
12
votes
9answers
5k views

passing DB Connection object to methods

Was wondering if it is recomended to pass a database connection object around(to other modules) or let the method (in the other module) take care of setting it up. I am leaning toward letting the ...