11 out of 18 rated this helpful - Rate this topic

SqlConnection Class

Represents an open connection to a SQL Server database. This class cannot be inherited.

System.Object
  System.MarshalByRefObject
    System.ComponentModel.Component
      System.Data.Common.DbConnection
        System.Data.SqlClient.SqlConnection

Namespace:  System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)
public sealed class SqlConnection : DbConnection, 
	ICloneable

The SqlConnection type exposes the following members.

  Name Description
Public method SqlConnection() Initializes a new instance of the SqlConnection class.
Public method SqlConnection(String) Initializes a new instance of the SqlConnection class when given a string that contains the connection string.
Top
  Name Description
Protected property CanRaiseEvents Gets a value indicating whether the component can raise an event. (Inherited from Component.)
Public property ConnectionString Gets or sets the string used to open a SQL Server database. (Overrides DbConnection.ConnectionString.)
Public property ConnectionTimeout Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error. (Overrides DbConnection.ConnectionTimeout.)
Public property Container Gets the IContainer that contains the Component. (Inherited from Component.)
Public property Database Gets the name of the current database or the database to be used after a connection is opened. (Overrides DbConnection.Database.)
Public property DataSource Gets the name of the instance of SQL Server to which to connect. (Overrides DbConnection.DataSource.)
Protected property DbProviderFactory Gets the DbProviderFactory for this DbConnection. (Inherited from DbConnection.)
Protected property DesignMode Gets a value that indicates whether the Component is currently in design mode. (Inherited from Component.)
Protected property Events Gets the list of event handlers that are attached to this Component. (Inherited from Component.)
Public property FireInfoMessageEventOnUserErrors Gets or sets the FireInfoMessageEventOnUserErrors property.
Public property PacketSize Gets the size (in bytes) of network packets used to communicate with an instance of SQL Server.
Public property ServerVersion Gets a string that contains the version of the instance of SQL Server to which the client is connected. (Overrides DbConnection.ServerVersion.)
Public property Site Gets or sets the ISite of the Component. (Inherited from Component.)
Public property State Indicates the state of the SqlConnection when the most recent network operation was performed on the connection. (Overrides DbConnection.State.)
Public property StatisticsEnabled When set to true, enables statistics gathering for the current connection.
Public property WorkstationId Gets a string that identifies the database client.
Top
  Name Description
Protected method BeginDbTransaction Starts a database transaction. (Inherited from DbConnection.)
Public method BeginTransaction() Starts a database transaction.
Public method BeginTransaction(IsolationLevel) Starts a database transaction with the specified isolation level.
Public method BeginTransaction(String) Starts a database transaction with the specified transaction name.
Public method BeginTransaction(IsolationLevel, String) Starts a database transaction with the specified isolation level and transaction name.
Public method ChangeDatabase Changes the current database for an open SqlConnection. (Overrides DbConnection.ChangeDatabase(String).)
Public method Static member ChangePassword Changes the SQL Server password for the user indicated in the connection string to the supplied new password.
Public method Static member ClearAllPools Empties the connection pool.
Public method Static member ClearPool Empties the connection pool associated with the specified connection.
Public method Close Closes the connection to the database. This is the preferred method of closing any open connection. (Overrides DbConnection.Close().)
Public method CreateCommand Creates and returns a SqlCommand object associated with the SqlConnection.
Protected method CreateDbCommand Creates and returns a DbCommand object associated with the current connection. (Inherited from DbConnection.)
Public method CreateObjRef Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.)
Public method Dispose() Releases all resources used by the Component. (Inherited from Component.)
Protected method Dispose(Boolean) Releases the unmanaged resources used by the Component and optionally releases the managed resources. (Inherited from Component.)
Public method EnlistDistributedTransaction Enlists in the specified transaction as a distributed transaction.
Public method EnlistTransaction Enlists in the specified transaction as a distributed transaction. (Overrides DbConnection.EnlistTransaction(Transaction).)
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Releases unmanaged resources and performs other cleanup operations before the Component is reclaimed by garbage collection. (Inherited from Component.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetLifetimeService Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Public method GetSchema() Returns schema information for the data source of this SqlConnection. (Overrides DbConnection.GetSchema().)
Public method GetSchema(String) Returns schema information for the data source of this SqlConnection using the specified string for the schema name. (Overrides DbConnection.GetSchema(String).)
Public method GetSchema(String, String[]) Returns schema information for the data source of this SqlConnection using the specified string for the schema name and the specified string array for the restriction values. (Overrides DbConnection.GetSchema(String, String[]).)
Protected method GetService Returns an object that represents a service provided by the Component or by its Container. (Inherited from Component.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method InitializeLifetimeService Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected method MemberwiseClone() Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method MemberwiseClone(Boolean) Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.)
Protected method OnStateChange Raises the StateChange event. (Inherited from DbConnection.)
Public method Open Opens a database connection with the property settings specified by the ConnectionString. (Overrides DbConnection.Open().)
Public method ResetStatistics If statistics gathering is enabled, all values are reset to zero.
Public method RetrieveStatistics Returns a name value pair collection of statistics at the point in time the method is called.
Public method ToString Returns a String containing the name of the Component, if any. This method should not be overridden. (Inherited from Component.)
Top
  Name Description
Public event Disposed Occurs when the component is disposed by a call to the Dispose method. (Inherited from Component.)
Public event InfoMessage Occurs when SQL Server returns a warning or informational message.
Public event StateChange Occurs when the state of the event changes. (Inherited from DbConnection.)
Top
  Name Description
Explicit interface implemetation Private method ICloneable.Clone Creates a new object that is a copy of the current instance.
Explicit interface implemetation Private method IDbConnection.BeginTransaction() Begins a database transaction. (Inherited from DbConnection.)
Explicit interface implemetation Private method IDbConnection.BeginTransaction(IsolationLevel) Begins a database transaction with the specified IsolationLevel value. (Inherited from DbConnection.)
Explicit interface implemetation Private method IDbConnection.CreateCommand Creates and returns a DbCommand object that is associated with the current connection. (Inherited from DbConnection.)
Top

A SqlConnection object represents a unique session to a SQL Server data source. With a client/server database system, it is equivalent to a network connection to the server. SqlConnection is used together with SqlDataAdapter and SqlCommand to increase performance when connecting to a Microsoft SQL Server database. For all third-party SQL server products, and other OLE DB-supported data sources, use OleDbConnection.

When you create an instance of SqlConnection, all properties are set to their initial values. For a list of these values, see the SqlConnection constructor.

See ConnectionString for a list of the keywords in a connection string.

If the SqlConnection goes out of scope, it won't be closed. Therefore, you must explicitly close the connection by calling Close or Dispose. Close and Dispose are functionally equivalent. If the connection pooling value Pooling is set to true or yes, the underlying connection is returned back to the connection pool. On the other hand, if Pooling is set to false or no, the underlying connection to the server is actually closed.

Note Note

Login and logout events will not be raised on the server when a connection is fetched from or returned to the connection pool, because the connection is not actually closed when it is returned to the connection pool. For more information, see SQL Server Connection Pooling (ADO.NET).

To ensure that connections are always closed, open the connection inside of a using block, as shown in the following code fragment. Doing so ensures that the connection is automatically closed when the code exits the block.

using (SqlConnection connection = new SqlConnection(connectionString))
    {
        connection.Open();
        // Do work here; connection closed on following line.
    }
NoteNote

To deploy high-performance applications, you must use connection pooling. When you use the .NET Framework Data Provider for SQL Server, you do not have to enable connection pooling because the provider manages this automatically, although you can modify some settings. For more information, see SQL Server Connection Pooling (ADO.NET).

If a SqlException is generated by the method executing a SqlCommand, the SqlConnection remains open when the severity level is 19 or less. When the severity level is 20 or greater, the server ordinarily closes the SqlConnection. However, the user can reopen the connection and continue.

An application that creates an instance of the SqlConnection object can require all direct and indirect callers to have sufficient permission to the code by setting declarative or imperative security demands. SqlConnection makes security demands using the SqlClientPermission object. Users can verify that their code has sufficient permissions by using the SqlClientPermissionAttribute object. Users and administrators can also use the Caspol.exe (Code Access Security Policy Tool) to modify security policy at the machine, user, and enterprise levels. For more information, see Security in the .NET Framework. For an example demonstrating how to use security demands, see Code Access Security and ADO.NET.

NoteNote

If you are using Microsoft .NET Framework version 1.0, the FullTrust named permission set is required to connect to SQL Server by using Open. This requirement does not apply if you are using .NET Framework version 1.1 or later. For more information, see Requesting Permissions and Named Permission Sets.

For more information about handling warning and informational messages from the server, see Connection Events (ADO.NET). SQL Server engine errors and error messages are documented in SQL Server Books Online.

Caution noteCaution

ADO.NET 2.0 does not support Asynchronous commands over shared memory for SQL Server 2000 or lower. However, you can force TCP instead of shared memory. You can do that by prefixing tcp: to the server name in the connection string or you can use localhost.

The following example creates a SqlCommand and a SqlConnection. The SqlConnection is opened and set as the Connection for the SqlCommand. The example then calls ExecuteNonQuery. To accomplish this, the ExecuteNonQuery is passed a connection string and a query string that is a Transact-SQL INSERT statement. The connection is closed automatically when the code exits the using block.


private static void CreateCommand(string queryString,
    string connectionString)
{
    using (SqlConnection connection = new SqlConnection(
               connectionString))
    {
        SqlCommand command = new SqlCommand(queryString, connection);
        command.Connection.Open();
        command.ExecuteNonQuery();
    }
}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
sqlConnection
$0$0 $0$0 $0 $0$0
SqlConnection Connection String Parameter Keywords & Values (SSL/TLS)

From SqlConnection Connection String Parameter Keywords & Values (http://weblogs.asp.net/wallen/archive/2005/03/22/395496.aspx):

"Encrypt" - "When true, SQL Server uses SSL encryption for all data sent between the client and server if the server has a certificate installed. Recognized values are true, false, yes, and no"

Pooling timeout
how much is the pooling timeout?