Data.SqlExpr.EConnectFlag
[–] Properties | |
---|---|
Type: enum | |
Visibility: public | |
Source: Data.SqlExpr.pas Data.SqlExpr.hpp
| |
Unit: Data.SqlExpr | |
Parent: Data.SqlExpr |
Delphi
EConnectFlag = (eConnect, eReconnect, eDisconnect);
C++
enum DECLSPEC_DENUM EConnectFlag : unsigned char { eConnect, eReconnect, eDisconnect };
Description
Represents a connection flag.
EConnectFlag is used by TSQLConnection when it checks the connection to connect, reconnect, or disconnect.
EConnectFlag can take 3 values:
Value | Description |
---|---|
eConnect |
Used to open the connection. |
eReconnect |
Used to close and then open the connection. |
eDisconnect |
Used to close the connection. |