Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

57
votes
2answers
4k views

Under what circumstances is an SqlConnection automatically enlisted in an ambient TransactionScope Transaction?

What does it mean for an SqlConnection to be "enlisted" in a transaction? Does it simply mean that commands I execute on the connection will participate in the transaction? If so, under what ...
20
votes
6answers
4k views

When should I open and close a connection to SQL Server

I have a simple static class with a few methods in it. Each of those methods open a SqlConnection, query the database and close the connection. This way, I am sure that I always close the connection ...
16
votes
8answers
2k views

Do I have to Close() a SQLConnection before it gets disposed?

Per my other question here about Disposable objects, should we call Close() before the end of a using block? using (SqlConnection connection = new SqlConnection()) using (SqlCommand command = new ...
14
votes
5answers
716 views

Is it better to execute many sql commands with one connection, or reconnect everytime?

Here's my test code, which seems to suggest that it's better to connect multiple times instead of connecting just once. Am I doing something wrong? int numIts = 100; Stopwatch sw = new Stopwatch(); ...
10
votes
8answers
5k views

Why call SqlClient.SqlDataReader Close() method anyway?

Is the SqlClient.SqlDataReader a .NET managed object or not? Why do we have to call the Close() method explicitly close an open connection? Shouldn't running out of scope for such an object ...
8
votes
6answers
410 views

What disadvantages are there for leaving an SQL Connection open?

This seems to be a simple question, but I wonder the disadvantages of not calling the "close()" function. Thanks.
8
votes
3answers
5k views

How to use ADO.net Entity Framework with an existing SqlConnection?

I have an existing asp.net website that uses an SqlConnection. I have added the ADO.net Entity Framework. I have successfully connected to the database and created the .edmx file. I am able to ...
8
votes
3answers
4k views

Is SqlCommand.Dispose enough?

Can I use this approach efficiently? using(SqlCommand cmd = new SqlCommand("GetSomething", new SqlConnection(Config.ConnectionString)) { cmd.Connection.Open(); // set up parameters and ...
7
votes
2answers
302 views

Session-Per-Request with SqlConnection / System.Transactions

I've just started using Dapper for a project, having mostly used ORMs like NHibernate and EF for the past few years. Typically in our web applications we implement session per request, beginning a ...
7
votes
2answers
2k views

Does DataAdapter.Fill() close its connection when an Exception is thrown?

I am using ADO.NET (.NET 1.1) in a legacy app. I know that DataAdapter.Fill() opens and closes connections if the connection hasn't been opened manually before it's given to the DataAdapter. My ...
7
votes
4answers
11k views

What is the difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout?

Is there any difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout in .NET?
6
votes
3answers
105 views

Is a SqlConnection automatically closed when an application is closed?

I am querying the db in a separate thread. If I close the application while the query is being executed, will the SqlConnection automatically close or will it remain open?
6
votes
7answers
320 views

Can the using statement be replaced by curly braces?

I use the using statement for SqlConnection. It's is good for performance because forces calling Dispose() that simply releases the connection to the pool sooner. However, I realized that object ...
6
votes
7answers
2k views

How can I tell how many SQL Connections I have open in a windows service?

I'm seeing some errors that would indicate a "connection leak". That is, connections that were not closed properly and the pool is running out. So, how do I go about instrumenting this to see exactly ...
5
votes
2answers
849 views

ASP.NET MVC Manage SQLConnection with Dapper

I am giving the new Dapper Micro ORM released by Stack Overflow/Sam Saffron a quick go using MVC. I'm wondering what is the simplest way to manage a SQLConnection object inside my controller? I am ...
5
votes
3answers
307 views

C# SQLConnection pooling

Can anyone brief me how to do Connection Pooling in ADO.Net, I do need to connect to 3 separate databases. 2 of them are in same server and the other in a separate one. Better with code snipts..
5
votes
6answers
2k views

“open/close” SqlConnection or keep open?

I have my business-logic implemented in simple static classes with static methods. Each of these methods opens/closes SQL connection when called: public static void AddSomething(string something) { ...
5
votes
3answers
299 views

Is there a standard .NET way to test if a SqlConnection string works? [closed]

Possible Duplicate: How to check if connection string is valid? Currently I'm doing it like this: internal bool CheckConnection() { using (SqlConnection testConn = new ...
5
votes
8answers
7k views

Using C#'s 'using' statement with a custom object's function, do I Need to implement IDisposable?

I have an sqlConnection manager class like so: public class SQLConn { public string connStr = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]; private SqlConnection ...
5
votes
4answers
542 views

Managing SQL Server Connections

What is the the best practice for sql connections. Currently i am using the following: using(SqlConnection sqlConn = new SqlConnection(CONNECTIONSTRING)) { sqlConn.Open(); //DB CODE GOES HERE } ...
4
votes
3answers
71 views

Opening two SQLConnections with the same ConnectionString

I am tracing a bug in a library I did not write myself. When using this library with ASP.NET, I get db connection errors because the SQLConnection seems to get closed when a second Connection is being ...
4
votes
3answers
46 views

SqlConnection localhost failed username

This is my first time trying to use a database in ASP.Net, and I have a problem here: My database is on my computer (localhost), and it throws an exception on me when I click the "submit" button : ...
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
1answer
493 views

Connection using enlist=false does not close after being manually enlisted in distributed transaction

I have a distributed transaction context using ServiceDomain. Inside it, I open an SQL connection with connection string specifying Enlist=false, so that it is not automatically enlisted in the ...
4
votes
1answer
273 views

Will SqlConnection get disposed by GC?

Disclaimer: I know IDisposable should be implemented when dealing with unmanaged resources. The rest of the code should be deterministic and do using (...) { } (equivalent of try {} finally { ...
4
votes
6answers
185 views

Detecting if the garbage collector was invoked (.Net)

When using SqlConnection, it's important to always close it when used - either by .Close() or placing the SqlConnection in a "using". Unfurtunately, people, including myself, tend to forgot that and ...
4
votes
4answers
269 views

How can maintain a SqlConnection open always

How can maintain a SqlConnection (or using another component) open (connected) always during the execution of my .Net app? I need this because my app needs to detect using this commnad exec sp_who2 ...
4
votes
3answers
200 views

When should I close the db connection?

Is it a must to close the connection in PHP script?
4
votes
3answers
413 views

how many instances of SqlConnection should I use

Background: I have an application that I have nicely separated my interface logic from my middle tier logic which handles the queries to the database. I do a lot of custom sorting and narrowing so ...
4
votes
4answers
785 views

How can I “detach” a SqlDataReader from its SqlConnection object?

I have a method ("GetDataReader," let's call it) that returns a SqlDataReader. It's inside a Singleton DataFactory class that maintains a persistent connection to the database. The problem with this ...
4
votes
2answers
635 views

Is it important to Open a sql connection in the transactionscope

I created a sqlconnection, CN1. Then this CN1 is opened. Later in the code there is a transactionscope. If I execute a sql command on this CN1 connection, is this within transaction? Code looks like ...
4
votes
2answers
839 views

Impersonation: ASP.Net MVC Controller Action vs. Web Forms

Is there a difference with impersonation between an ASP.Net MVC controller actions vs. an ASP.Net Web Form? Using the exact same code within the same web project, I am able to successfully ...
4
votes
5answers
661 views

Why isn't SqlConnection disposed/closed?

Given the method: internal static DataSet SelectDataSet(String commandText, DataBaseEnum dataBase) { var dataset = new DataSet(); SqlConnection sqlc = dataBase == DataBaseEnum.ZipCodeDb ...
4
votes
3answers
841 views

Protecting connection string from Man in the middle

In my winforms application i am hashing the connection string in local level. But here a couple of questions. After my app decrypts the connection string, the connection string info is sent in ...
4
votes
6answers
4k views

.net SqlConnection not being closed even when within a using { }

Please help! Background info I have a WPF application which accesses a SQL Server 2005 database. The database is running locally on the machine the application is running on. Everywhere I use the ...
4
votes
5answers
11k views

How to test SqlServer connection without opening a database

The title pretty much says it all. I want to create a SqlConnection and then check that connection without opening a database, cause at that point I don't know yet where will I connect to. Is it ...
4
votes
9answers
2k views

What is the proper way to ensure a SQL connection is closed when an exception is thrown?

I use a pattern that looks something like this often. I'm wondering if this is alright or if there is a best practice that I am not applying here. Specifically I'm wondering; in the case that an ...
3
votes
1answer
100 views

.Net SqlConnection, Server Authentication, and Certificate Pinning

How does one pin a certificate when using s SqlConnection? From SqlConnection Connection String Parameter Keywords & Values, I know I can set Encrypted to true to force (encourage?) use of ...
3
votes
3answers
254 views

SqlConnection in C#

In VB.NET I can use: Protected Conn As New SqlConnection(ConfigurationManager.ConnectionStrings("Active").ConnectionString) However, when I do the following in C#: protected SqlConnection conn = ...
3
votes
1answer
51 views

Does the connectionManagement config apply to SqlConnections?

In a .NET 4 application, does the default limit of 2 connections to a host (via <system.net><connectionManagement>) apply to a SqlConnection pool?
3
votes
2answers
97 views

Managing 40 SQL Connections in single desktop application

I have a desktop application that we use internally. The app consists of 5 Databases. We also have 5 branches with each having there own SQL Server. We also have Mobile Users who can switch to ...
3
votes
1answer
264 views

Why both SqlConnection and SqlTransaction are present in SqlCommand constructor?

I wonder, what is the reason to have this SqlCommand constructor overload: public SqlCommand( string cmdText, SqlConnection connection, SqlTransaction transaction ) ? When I need to ...
3
votes
3answers
410 views

Calling sqlCommand in a loop increasing exec time every step

I've got a loop that executes the stored procedure in a loop with over 40,000 iterations, like so: SqlCommand command = new SqlCommand("WriteDataToDB"); command.Connection = _connection; ...
3
votes
4answers
1k views

Is closing/disposing an SqlDataReader needed if you are already closing the SqlConnection?

I noticed This question, but my question is a bit more specific. Is there any advantage to using using (SqlConnection conn = new SqlConnection(conStr)) { using (SqlCommand command = new ...
3
votes
3answers
533 views

SqlConnection Singleton

Greetings, I would like to ask if creating Singleton to have only one active connection to db is a good idea. What i would like to do is: 1) I have a wcf service 2) wcf service gets data from db 3) i ...
3
votes
2answers
704 views

SQLCommand/SQLConnection vs OleDbCommand/OleDbConnection

Does it make a difference whether I use SQLCommand/SQLConnection instead of OleDbCommand/OleDbConnection. Do I get any advantages out of that, from a API comfortability, feature, performance or ...
3
votes
5answers
2k views

Is SqlCommand.Dispose() required if associated SqlConnection will be disposed?

I usually use code like this: using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString)) { var command = connection.CreateCommand(); ...
3
votes
3answers
6k views

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

Ok, I asked about this very error earlier this week and had some very helpful answers and without doubt things have drastically improved since I started following the suggestions. However, now I am ...
2
votes
3answers
131 views

calling new SqlConnection() hangs program

This one has me stumped. I'm not even trying to connect to a database. When this code gets to the line where I instantiate a new SqlConnection object, it just hangs there, not throwing an exception ...
2
votes
1answer
69 views

Make .NET SqlConnection NOT use Windows session credentials

For some reason my .NET (C#) SqlConnection uses my Windows session credentials instead of the specified ones. Is there a way to ignore my session credentials and use the ones I specified? ...

1 2 3 4