Jumat, 29 November 2024

SqlConnection Class

 

SqlConnection Class

.NET Framework 4

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

Namespace:  System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)
'Declaration

Public NotInheritable Class SqlConnection _
	Inherits DbConnection _
	Implements ICloneable

The SqlConnection type exposes the following members.

 NameDescription
Public methodSqlConnectionInitializes a new instance of the SqlConnection class.
Public methodSqlConnection(String)Initializes a new instance of the SqlConnection class when given a string that contains the connection string.
Top
 NameDescription
Protected propertyCanRaiseEventsGets a value indicating whether the component can raise an event. (Inherited from Component.)
Public propertyConnectionStringGets or sets the string used to open a SQL Server database. (Overrides DbConnection.ConnectionString.)
Public propertyConnectionTimeoutGets the time to wait while trying to establish a connection before terminating the attempt and generating an error. (Overrides DbConnection.ConnectionTimeout.)
Public propertyContainerGets the IContainer that contains the Component. (Inherited from Component.)
Public propertyDatabaseGets the name of the current database or the database to be used after a connection is opened. (Overrides DbConnection.Database.)
Public propertyDataSourceGets the name of the instance of SQL Server to which to connect. (Overrides DbConnection.DataSource.)
Protected propertyDbProviderFactoryGets the DbProviderFactory for this DbConnection. (Inherited from DbConnection.)
Protected propertyDesignModeGets a value that indicates whether the Component is currently in design mode. (Inherited from Component.)
Protected propertyEventsGets the list of event handlers that are attached to this Component. (Inherited from Component.)
Public propertyFireInfoMessageEventOnUserErrorsGets or sets the FireInfoMessageEventOnUserErrors property.
Public propertyPacketSizeGets the size (in bytes) of network packets used to communicate with an instance of SQL Server.
Public propertyServerVersionGets a string that contains the version of the instance of SQL Server to which the client is connected. (Overrides DbConnection.ServerVersion.)
Public propertySiteGets or sets the ISite of the Component. (Inherited from Component.)
Public propertyStateIndicates the state of the SqlConnection. (Overrides DbConnection.State.)
Public propertyStatisticsEnabledWhen set to true, enables statistics gathering for the current connection.
Public propertyWorkstationIdGets a string that identifies the database client.
Top
 NameDescription
Protected methodBeginDbTransactionStarts a database transaction. (Inherited from DbConnection.)
Public methodBeginTransactionStarts a database transaction.
Public methodBeginTransaction(IsolationLevel)Starts a database transaction with the specified isolation level.
Public methodBeginTransaction(String)Starts a database transaction with the specified transaction name.
Public methodBeginTransaction(IsolationLevel, String)Starts a database transaction with the specified isolation level and transaction name.
Public methodChangeDatabaseChanges the current database for an open SqlConnection. (Overrides DbConnection.ChangeDatabase(String).)
Public method Static memberChangePasswordChanges the SQL Server password for the user indicated in the connection string to the supplied new password.
Public method Static memberClearAllPoolsEmpties the connection pool.
Public method Static memberClearPoolEmpties the connection pool associated with the specified connection.
Public methodCloseCloses the connection to the database. This is the preferred method of closing any open connection. (Overrides DbConnection.Close.)
Public methodCreateCommandCreates and returns a SqlCommand object associated with the SqlConnection.
Protected methodCreateDbCommandCreates and returns a DbCommand object associated with the current connection. (Inherited from DbConnection.)
Public methodCreateObjRefCreates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.)
Public methodDisposeReleases all resources used by the Component. (Inherited from Component.)
Protected methodDispose(Boolean)Releases the unmanaged resources used by the Component and optionally releases the managed resources. (Inherited from Component.)
Public methodEnlistDistributedTransactionEnlists in the specified transaction as a distributed transaction.
Public methodEnlistTransactionEnlists in the specified transaction as a distributed transaction. (Overrides DbConnection.EnlistTransaction(Transaction).)
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodFinalizeReleases unmanaged resources and performs other cleanup operations before the Component is reclaimed by garbage collection. (Inherited from Component.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetLifetimeServiceRetrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Public methodGetSchemaReturns schema information for the data source of this SqlConnection. (Overrides DbConnection.GetSchema.)
Public methodGetSchema(String)Returns schema information for the data source of this SqlConnection using the specified string for the schema name. (Overrides DbConnection.GetSchema(String).)
Public methodGetSchema(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 methodGetServiceReturns an object that represents a service provided by the Component or by its Container. (Inherited from Component.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Public methodInitializeLifetimeServiceObtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Protected methodMemberwiseClone(Boolean)Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.)
Protected methodOnStateChangeRaises the StateChange event. (Inherited from DbConnection.)
Public methodOpenOpens a database connection with the property settings specified by the ConnectionString. (Overrides DbConnection.Open.)
Public methodResetStatisticsIf statistics gathering is enabled, all values are reset to zero.
Public methodRetrieveStatisticsReturns a name value pair collection of statistics at the point in time the method is called.
Public methodToStringReturns a String containing the name of the Component, if any. This method should not be overridden. (Inherited from Component.)
Top
 NameDescription
Public eventDisposedOccurs when the component is disposed by a call to the Dispose method. (Inherited from Component.)
Public eventInfoMessageOccurs when SQL Server returns a warning or informational message.
Public eventStateChangeOccurs when the state of the event changes. (Inherited from DbConnection.)
Top
 NameDescription
Explicit interface implemetation Private methodICloneable.CloneCreates a new object that is a copy of the current instance.
Explicit interface implemetation Private methodIDbConnection.BeginTransactionBegins a database transaction. (Inherited from DbConnection.)
Explicit interface implemetation Private methodIDbConnection.BeginTransaction(IsolationLevel)Begins a database transaction with the specified IsolationLevel value. (Inherited from DbConnection.)
Explicit interface implemetation Private methodIDbConnection.CreateCommandCreates and returns a DbCommand object that is associated with the current connection. (Inherited from DbConnection.)
Top

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 DisposeClose 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 connection As New SqlConnection(connectionString)
    connection.Open()
    ' Do work here; connection closed on following line.
End Using

Note Note

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.

Note Note

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 note Caution

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.

TopicLocation
How to: Create Connections to SQL Server DatabasesData Access in Visual Studio
How to: Create Connections to SQL Server DatabasesData Access in Visual Studio

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.

Public Sub CreateCommand(ByVal queryString As String, _
  ByVal connectionString As String)
    Using connection As New SqlConnection(connectionString)
        Dim command As New SqlCommand(queryString, connection)
        command.Connection.Open()
        command.ExecuteNonQuery()
    End Using
End Sub


.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 Role not supported), Windows Server 2008 R2 (Server Core Role not supported), 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.
Community Content Add
Annotations FAQ
Pooling timeout
how much is the pooling timeout?

Tidak ada komentar: