Describes the current state of the connection to a data source.
Namespace: CNClrLib.ADONet.Enums
Delphi
|
type
TConnectionState = CNClrLib.EnumTypes.TConnectionState;
|
|
Name
|
Description
|

|
csClosed
|
The connection is closed.
|

|
csOpen
|
The connection is open.
|

|
csConnecting
|
The connection object is connecting to the data source.
|

|
csExecuting
|
The connection object is executing a command. (This value is reserved for future versions of the product.)
|

|
csFetching
|
The connection object is retrieving data. (This value is reserved for future versions of the product.)
|

|
csBroken
|
The connection to the data source is broken. This can occur only after the connection has been opened. A connection in this state may be closed and then re-opened. (This value is reserved for future versions of the product.)
|
Top
|