ADO::ConnectModeEnum
Specifies the available permissions for modifying data in a Connection object.
| Constant |
Value |
Description |
adModeRead |
1 |
Indicates read-only permissions. |
adModeReadWrite |
3 |
Indicates read/write permissions. |
adModeShareDenyNone |
16 |
Allows others to open a connection with any permissions. Neither read
nor write access can be denied to others. |
adModeShareDenyRead |
4 |
Prevents others from opening a connection with read permissions. |
adModeShareDenyWrite |
8 |
Prevents others from opening a connection with write permissions. |
adModeShareExclusive |
12 |
Prevents others from opening a connection. |
adModeUnknown |
0 |
Default. Indicates that the permissions have not yet been set or cannot
be determined. |
adModeWrite |
2 |
Indicates write-only permissions. |
|