The main function off here is open ().
Public Types | |
| enum | OnConflict { None, Abort, Rollback, Fail, Ignore, Replace } |
| Conflict resolution algorithms that determine behaviour when a transaction fails. More... | |
Static Public Member Functions | |
| Database | open (char[] filename) |
| Open a connection to the database. | |
| bit | escaped (char ch) |
| uint | fquotedLength (char[] text) |
| Return the number of bytes the identifier would take when quoted. | |
| uint | quotedLength (char[] text) |
| Return the number of bytes the identifier would take when quoted. | |
| this () | |
| char[] | quote (char[] string) |
| Quote the identifer. | |
| char[] | fquote (char[] string) |
| Quote the identifer. | |
| int | unquoteSkip (char[] string) |
| Return the index of the character after the quote. | |
| char[] | unquote (char[] string) |
| Remove quotes from an identifier. | |
| char[] | onConflictToString (OnConflict value) |
| char[] | onConflictToName (OnConflict value) |
| char[] | libraryVersion () |
| Return the version of the library. | |
| char[] | libraryEncoding () |
| Return the encoding of the library. | |
Static Public Attributes | |
| bit[char[]] | keywords |
| Predefined keywords in SQLite. | |
|
|
|
Quote the identifer.
|
|
|
Return the number of bytes the identifier would take when quoted.
|
|
|
Return the encoding of the library. This is hopefully "iso8859". |
|
|
Return the version of the library. At time of writing, this is "2.8.5". |
|
|
Open a connection to the database.
|
|
|
Quote the identifer.
|
|
|
Return the number of bytes the identifier would take when quoted.
|
|
|
Remove quotes from an identifier.
|
|
|
Return the index of the character after the quote.
|
|
|
Predefined keywords in SQLite.
|
1.3.2