Class CMSConnectionScope
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Allows changing command timeout for a code block. Also allows specifying a connection that is used for executing all ConnectionHelper calls that are passed the query text directly within a code block.
public class CMSConnectionScope : Trackable<CMSConnectionScope>, INotCopyThreadItem
- Inheritance
-
objectCMSConnectionScope
- Implements
- Inherited Members
- Extension Methods
Remarks
To set the connection scope for the whole API (e.g. DataQuery), use the CMSConnectionContext class.
Constructors
CMSConnectionScope(IDataConnection)
Constructor. Ensures that all database connections during the live of this object will use the given connection.
public CMSConnectionScope(IDataConnection conn)
Parameters
conn
IDataConnectionConnection to use within all database operations. If null new connection is created
CMSConnectionScope(bool)
Empty constructor. Creates a new connection and ensures that all database connections during the live of this object will use that connection.
public CMSConnectionScope(bool newConnection = false)
Parameters
newConnection
boolIf true, creates a new connection
CMSConnectionScope(string, bool)
Constructor. Ensures that all database connections during the live of this object will use the given connection.
public CMSConnectionScope(string connectionString, bool defaultIfNotFound = false)
Parameters
connectionString
stringConnection string to use within all underlying database operations. If null new connection is created
defaultIfNotFound
boolIf true, the default connection string is used if the given connection string is not found
Properties
CommandTimeout
Command timeout which will be set on the connection within the current connection scope.
public int CommandTimeout { set; }
Property Value
- int
Connection
Connection of the current scope.
public IDataConnection Connection { get; }
Property Value
ConnectionString
Connection string name that the thread should use to access the database
public string ConnectionString { get; protected set; }
Property Value
- string
Methods
Close()
Closes the connection.
public void Close()
Dispose()
Disposes the object.
public override void Dispose()
Open()
Opens the connection.
public CMSConnectionScope Open()
Returns
ResetConnection()
Resets the connection to recover from error.
public void ResetConnection()