Set of TConnOption.
Source position: sqldb.pp line 184
| type TConnOptions = set of ( | ||
| sqSupportParams, | 
 | The connection type has native support for parameters. | 
| sqSupportEmptyDatabaseName, | 
 | Does the connection allow empty database names ? | 
| sqEscapeSlash, | 
 | Escapes in string literals are done with backslash characters. | 
| sqEscapeRepeat, | 
 | Escapes in string literals are done by repeating the character. | 
| sqImplicitTransaction, | 
 | Does the connection support implicit transaction management. | 
| sqLastInsertID, | 
 | Does the connection support getting the ID for the last insert operation. | 
| sqSupportReturning, | 
 | The connection type supports INSERT/UPDATE with RETURNING clause. | 
| sqSequences, | 
 | Are sequences supported. | 
| sqCommitEndsPrepared, | ||
| sqRollbackEndsPrepared | ||
| ); | 
TConnOptions describes the full set of options defined by a database.
| 
 | Connection options. |