plain/ZPlainSqLite28.pas File Reference

Go to the source code of this file.

Typedefs

typedef Pointer Psqlite
typedef Pointer Psqlite_func
typedef Pointer Psqlite_vm
typedef Pointer(* Tsqlite_aggregate_context )(Psqlite_func func, Integer nBytes)
typedef Integer(* Tsqlite_aggregate_count )(Psqlite_func func)
typedef Integer(* Tsqlite_auth_callback )(Pointer p1, Integer p2, const PChar p3, const PChar p4, const PChar p5, const PChar p6)
typedef Integer(* Tsqlite_bind )(Psqlite_vm vm, Integer idx, const PChar value, Integer len, Integer copy)
typedef Integer(* Tsqlite_busy_callback )(Pointer p1, const PChar p2, Integer p3)
typedef void(* Tsqlite_busy_handler )(Psqlite db, Tsqlite_busy_callback callback, Pointer ptr)
typedef void(* Tsqlite_busy_timeout )(Psqlite db, Integer ms)
typedef Integer(* Tsqlite_callback )(Pointer p1, Integer p2, PChar &p3, PChar &p4)
typedef Integer(* Tsqlite_changes )(Psqlite db)
typedef void(* Tsqlite_close )(Psqlite db)
typedef Pointer(* Tsqlite_commit_hook )(Psqlite db, Tsqlite_simple_callback callback, Pointer ptr)
typedef Integer(* Tsqlite_compile )(Psqlite db, const PChar zSql, PChar &pzTail, Psqlite_vm &ppVm, PChar &pzErrmsg)
typedef Integer(* Tsqlite_complete )(const PChar sql)
typedef Integer(* Tsqlite_create_aggregate )(Psqlite db, const PChar zName, Integer nArg, Tsqlite_function_callback callback, Tsqlite_finalize_callback finalize, Pointer pUserData)
typedef Integer(* Tsqlite_create_function )(Psqlite db, const PChar zName, Integer nArg, Tsqlite_function_callback callback, Pointer pUserData)
typedef PChar(* Tsqlite_error_string )(Integer code)
typedef Integer(* Tsqlite_exec )(Psqlite db, const PChar sql, Tsqlite_callback sqlite_callback, Pointer arg, PChar &errmsg)
typedef Integer(* Tsqlite_finalize )(Psqlite_vm vm, PChar &pzErrMsg)
typedef void(* Tsqlite_finalize_callback )(Psqlite_func p1)
typedef void(* Tsqlite_free_table )(PChar &result)
typedef void(* Tsqlite_freemem )(Pointer ptr)
typedef void(* Tsqlite_function_callback )(Psqlite_func p1, Integer p2, const PPChar p3)
typedef Integer(* Tsqlite_function_type )(Psqlite db, const PChar zName, Integer datatype)
typedef Integer(* Tsqlite_get_table )(Psqlite db, const PChar sql, PPChar &resultp, Integer &nrow, Integer &ncolumn, PChar &errmsg)
typedef void(* Tsqlite_interrupt )(Psqlite db)
typedef Integer(* Tsqlite_key )(Psqlite db, const Pointer pKey, Integer nKey)
typedef Integer(* Tsqlite_last_insert_rowid )(Psqlite db)
typedef Integer(* Tsqlite_last_statement_changes )(Psqlite db)
typedef PChar(* Tsqlite_libencoding )()
typedef PChar(* Tsqlite_libversion )()
typedef Psqlite(* Tsqlite_open )(const PChar filename, Integer mode, PChar &errmsg)
typedef Psqlite(* Tsqlite_open_encrypted )(const PChar zFilename, const PChar pKey, Integer nKey, Integer &pErrcode, PChar &pzErrmsg)
typedef void(* Tsqlite_progress_handler )(Psqlite db, Integer p1, Tsqlite_simple_callback callback, Pointer ptr)
typedef Integer(* Tsqlite_rekey )(Psqlite db, const Pointer pKey, Integer nKey)
typedef Integer(* Tsqlite_reset )(Psqlite_vm vm, PChar &pzErrMsg)
typedef Integer(* Tsqlite_set_authorizer )(Psqlite db, Tsqlite_auth_callback callback, Pointer pUserData)
typedef void(* Tsqlite_set_result_double )(Psqlite_func func, Double arg)
typedef void(* Tsqlite_set_result_error )(Psqlite_func func, const PChar arg, Integer len)
typedef void(* Tsqlite_set_result_int )(Psqlite_func func, Integer arg)
typedef PChar(* Tsqlite_set_result_string )(Psqlite_func func, const PChar arg, Integer len)
typedef Integer(* Tsqlite_simple_callback )(Pointer p1)
typedef Integer(* Tsqlite_step )(Psqlite_vm pVm, Integer &pN, PPChar &pazValue, PPChar &pazColName)
typedef Pointer(* Tsqlite_trace )(Psqlite db, Tsqlite_trace_callback callback, Pointer ptr)
typedef void(* Tsqlite_trace_callback )(Pointer p1, const PChar p2)
typedef Pointer(* Tsqlite_user_data )(Psqlite_func func)

Variables

const _SQLITE_INTERRUPT = 9
const TZNativeLibraryLoader LibraryLoader
const LINUX_DLL_LOCATION = "libsqlite.so"
const MASTER_NAME = "sqlite_master"
const SQLITE_ABORT = 4
const Tsqlite_aggregate_context sqlite_aggregate_context
const Tsqlite_aggregate_count sqlite_aggregate_count
const SQLITE_ARGS = -3
const SQLITE_ATTACH = 24
const SQLITE_AUTH = 23
const Tsqlite_bind sqlite_bind
const SQLITE_BUSY = 5
const Tsqlite_busy_handler sqlite_busy_handler
const Tsqlite_busy_timeout sqlite_busy_timeout
const SQLITE_CANTOPEN = 14
const Tsqlite_changes sqlite_changes
const Tsqlite_close sqlite_close
const Tsqlite_commit_hook sqlite_commit_hook
const Tsqlite_compile sqlite_compile
const Tsqlite_complete sqlite_complete
const SQLITE_CONSTRAINT = 19
const SQLITE_COPY = 0
const SQLITE_CORRUPT = 11
const Tsqlite_create_aggregate sqlite_create_aggregate
const Tsqlite_create_function sqlite_create_function
const SQLITE_CREATE_INDEX = 1
const SQLITE_CREATE_TABLE = 2
const SQLITE_CREATE_TEMP_INDEX = 3
const SQLITE_CREATE_TEMP_TABLE = 4
const SQLITE_CREATE_TEMP_TRIGGER = 5
const SQLITE_CREATE_TEMP_VIEW = 6
const SQLITE_CREATE_TRIGGER = 7
const SQLITE_CREATE_VIEW = 8
const SQLITE_DELETE = 9
const SQLITE_DENY = 1
const SQLITE_DETACH = 25
const SQLITE_DONE = 101
const SQLITE_DROP_INDEX = 10
const SQLITE_DROP_TABLE = 11
const SQLITE_DROP_TEMP_INDEX = 12
const SQLITE_DROP_TEMP_TABLE = 13
const SQLITE_DROP_TEMP_TRIGGER = 14
const SQLITE_DROP_TEMP_VIEW = 15
const SQLITE_DROP_TRIGGER = 16
const SQLITE_DROP_VIEW = 17
const SQLITE_EMPTY = 16
const SQLITE_ERROR = 1
const Tsqlite_error_string sqlite_error_string
const Tsqlite_exec sqlite_exec
const Tsqlite_finalize sqlite_finalize
const SQLITE_FORMAT = 24
const Tsqlite_free_table sqlite_free_table
const Tsqlite_freemem sqlite_freemem
const SQLITE_FULL = 13
const Tsqlite_function_type sqlite_function_type
const Tsqlite_get_table sqlite_get_table
const SQLITE_IGNORE = 2
const SQLITE_INSERT = 18
const SQLITE_INTERNAL = 2
const Tsqlite_interrupt sqlite_interrupt
const SQLITE_IOERR = 10
const SQLITE_ISO8859 = 1
const Tsqlite_key sqlite_key
const Tsqlite_last_insert_rowid sqlite_last_insert_rowid
const
Tsqlite_last_statement_changes 
sqlite_last_statement_changes
const Tsqlite_libencoding sqlite_libencoding
const Tsqlite_libversion sqlite_libversion
const SQLITE_LOCKED = 6
const SQLITE_MISMATCH = 20
const SQLITE_MISUSE = 21
const SQLITE_NOLFS = 22
const SQLITE_NOMEM = 7
const SQLITE_NOTADB = 26
const SQLITE_NOTFOUND = 12
const SQLITE_NUMERIC = -1
const SQLITE_OK = 0
const Tsqlite_open sqlite_open
const Tsqlite_open_encrypted sqlite_open_encrypted
const SQLITE_PERM = 3
const SQLITE_PRAGMA = 19
const Tsqlite_progress_handler sqlite_progress_handler
const SQLITE_PROTOCOL = 15
const SQLITE_RANGE = 25
const SQLITE_READ = 20
const SQLITE_READONLY = 8
const Tsqlite_rekey sqlite_rekey
const Tsqlite_reset sqlite_reset
const SQLITE_ROW = 100
const SQLITE_SCHEMA = 17
const SQLITE_SELECT = 21
const Tsqlite_set_authorizer sqlite_set_authorizer
const Tsqlite_set_result_double sqlite_set_result_double
const Tsqlite_set_result_error sqlite_set_result_error
const Tsqlite_set_result_int sqlite_set_result_int
const Tsqlite_set_result_string sqlite_set_result_string
const Tsqlite_step sqlite_step
const SQLITE_TEXT = -2
const SQLITE_TOOBIG = 18
const Tsqlite_trace sqlite_trace
const SQLITE_TRANSACTION = 22
const SQLITE_UPDATE = 23
const Tsqlite_user_data sqlite_user_data
const SQLITE_VERSION = "2.8.13"
const TEMP_MASTER_NAME = "sqlite_temp_master"
const WINDOWS_DLL_LOCATION = "sqlite.dll"


Typedef Documentation

typedef Pointer Psqlite

Definition at line 157 of file ZPlainSqLite28.pas.

typedef Pointer Psqlite_func

Definition at line 158 of file ZPlainSqLite28.pas.

typedef Pointer Psqlite_vm

Definition at line 159 of file ZPlainSqLite28.pas.

typedef Pointer(* Tsqlite_aggregate_context)(Psqlite_func func, Integer nBytes)

Definition at line 300 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_aggregate_count)(Psqlite_func func)

Definition at line 304 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_auth_callback)(Pointer p1, Integer p2, const PChar p3, const PChar p4, const PChar p5, const PChar p6)

Definition at line 185 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_bind)(Psqlite_vm vm, Integer idx, const PChar value, Integer len, Integer copy)

Definition at line 340 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_busy_callback)(Pointer p1, const PChar p2, Integer p3)

Definition at line 172 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_busy_handler)(Psqlite db, Tsqlite_busy_callback callback, Pointer ptr)

Definition at line 231 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_busy_timeout)(Psqlite db, Integer ms)

Definition at line 236 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_callback)(Pointer p1, Integer p2, PChar &p3, PChar &p4)

Definition at line 166 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_changes)(Psqlite db)

Definition at line 216 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_close)(Psqlite db)

Definition at line 203 of file ZPlainSqLite28.pas.

typedef Pointer(* Tsqlite_commit_hook)(Psqlite db, Tsqlite_simple_callback callback, Pointer ptr)

Definition at line 354 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_compile)(Psqlite db, const PChar zSql, PChar &pzTail, Psqlite_vm &ppVm, PChar &pzErrmsg)

Definition at line 319 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_complete)(const PChar sql)

Definition at line 228 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_create_aggregate)(Psqlite db, const PChar zName, Integer nArg, Tsqlite_function_callback callback, Tsqlite_finalize_callback finalize, Pointer pUserData)

Definition at line 266 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_create_function)(Psqlite db, const PChar zName, Integer nArg, Tsqlite_function_callback callback, Pointer pUserData)

Definition at line 259 of file ZPlainSqLite28.pas.

typedef PChar(* Tsqlite_error_string)(Integer code)

Definition at line 222 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_exec)(Psqlite db, const PChar sql, Tsqlite_callback sqlite_callback, Pointer arg, PChar &errmsg)

Definition at line 206 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_finalize)(Psqlite_vm vm, PChar &pzErrMsg)

Definition at line 332 of file ZPlainSqLite28.pas.

Definition at line 182 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_free_table)(PChar &result)

Definition at line 248 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_freemem)(Pointer ptr)

Definition at line 251 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_function_callback)(Psqlite_func p1, Integer p2, const PPChar p3)

Definition at line 177 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_function_type)(Psqlite db, const PChar zName, Integer datatype)

Definition at line 274 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_get_table)(Psqlite db, const PChar sql, PPChar &resultp, Integer &nrow, Integer &ncolumn, PChar &errmsg)

Definition at line 240 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_interrupt)(Psqlite db)

Definition at line 225 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_key)(Psqlite db, const Pointer pKey, Integer nKey)

Definition at line 372 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_last_insert_rowid)(Psqlite db)

Definition at line 213 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_last_statement_changes)(Psqlite db)

Definition at line 219 of file ZPlainSqLite28.pas.

typedef PChar(* Tsqlite_libencoding)()

Definition at line 256 of file ZPlainSqLite28.pas.

typedef PChar(* Tsqlite_libversion)()

Definition at line 254 of file ZPlainSqLite28.pas.

typedef Psqlite(* Tsqlite_open)(const PChar filename, Integer mode, PChar &errmsg)

Definition at line 198 of file ZPlainSqLite28.pas.

typedef Psqlite(* Tsqlite_open_encrypted)(const PChar zFilename, const PChar pKey, Integer nKey, Integer &pErrcode, PChar &pzErrmsg)

Definition at line 360 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_progress_handler)(Psqlite db, Integer p1, Tsqlite_simple_callback callback, Pointer ptr)

Definition at line 348 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_rekey)(Psqlite db, const Pointer pKey, Integer nKey)

Definition at line 367 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_reset)(Psqlite_vm vm, PChar &pzErrMsg)

Definition at line 336 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_set_authorizer)(Psqlite db, Tsqlite_auth_callback callback, Pointer pUserData)

Definition at line 308 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_set_result_double)(Psqlite_func func, Double arg)

Definition at line 288 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_set_result_error)(Psqlite_func func, const PChar arg, Integer len)

Definition at line 292 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_set_result_int)(Psqlite_func func, Integer arg)

Definition at line 284 of file ZPlainSqLite28.pas.

typedef PChar(* Tsqlite_set_result_string)(Psqlite_func func, const PChar arg, Integer len)

Definition at line 279 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_simple_callback)(Pointer p1)

Definition at line 163 of file ZPlainSqLite28.pas.

typedef Integer(* Tsqlite_step)(Psqlite_vm pVm, Integer &pN, PPChar &pazValue, PPChar &pazColName)

Definition at line 326 of file ZPlainSqLite28.pas.

typedef Pointer(* Tsqlite_trace)(Psqlite db, Tsqlite_trace_callback callback, Pointer ptr)

Definition at line 313 of file ZPlainSqLite28.pas.

typedef void(* Tsqlite_trace_callback)(Pointer p1, const PChar p2)

Definition at line 193 of file ZPlainSqLite28.pas.

typedef Pointer(* Tsqlite_user_data)(Psqlite_func func)

Definition at line 297 of file ZPlainSqLite28.pas.


Variable Documentation

const _SQLITE_INTERRUPT = 9

Definition at line 87 of file ZPlainSqLite28.pas.

Definition at line 460 of file ZPlainSqLite28.pas.

const LINUX_DLL_LOCATION = "libsqlite.so"

Definition at line 70 of file ZPlainSqLite28.pas.

const MASTER_NAME = "sqlite_master"

Definition at line 73 of file ZPlainSqLite28.pas.

const SQLITE_ABORT = 4

Definition at line 82 of file ZPlainSqLite28.pas.

Definition at line 430 of file ZPlainSqLite28.pas.

Definition at line 432 of file ZPlainSqLite28.pas.

const SQLITE_ARGS = -3

Definition at line 110 of file ZPlainSqLite28.pas.

const SQLITE_ATTACH = 24

Definition at line 149 of file ZPlainSqLite28.pas.

const SQLITE_AUTH = 23

Definition at line 101 of file ZPlainSqLite28.pas.

Definition at line 446 of file ZPlainSqLite28.pas.

const SQLITE_BUSY = 5

Definition at line 83 of file ZPlainSqLite28.pas.

Definition at line 400 of file ZPlainSqLite28.pas.

Definition at line 402 of file ZPlainSqLite28.pas.

const SQLITE_CANTOPEN = 14

Definition at line 92 of file ZPlainSqLite28.pas.

Definition at line 390 of file ZPlainSqLite28.pas.

Definition at line 384 of file ZPlainSqLite28.pas.

Definition at line 450 of file ZPlainSqLite28.pas.

Definition at line 438 of file ZPlainSqLite28.pas.

Definition at line 398 of file ZPlainSqLite28.pas.

const SQLITE_CONSTRAINT = 19

Definition at line 97 of file ZPlainSqLite28.pas.

const SQLITE_COPY = 0

Definition at line 125 of file ZPlainSqLite28.pas.

const SQLITE_CORRUPT = 11

Definition at line 89 of file ZPlainSqLite28.pas.

Definition at line 416 of file ZPlainSqLite28.pas.

Definition at line 414 of file ZPlainSqLite28.pas.

Definition at line 126 of file ZPlainSqLite28.pas.

Definition at line 127 of file ZPlainSqLite28.pas.

Definition at line 128 of file ZPlainSqLite28.pas.

Definition at line 129 of file ZPlainSqLite28.pas.

Definition at line 130 of file ZPlainSqLite28.pas.

Definition at line 131 of file ZPlainSqLite28.pas.

Definition at line 132 of file ZPlainSqLite28.pas.

const SQLITE_CREATE_VIEW = 8

Definition at line 133 of file ZPlainSqLite28.pas.

const SQLITE_DELETE = 9

Definition at line 134 of file ZPlainSqLite28.pas.

const SQLITE_DENY = 1

Definition at line 154 of file ZPlainSqLite28.pas.

const SQLITE_DETACH = 25

Definition at line 150 of file ZPlainSqLite28.pas.

const SQLITE_DONE = 101

Definition at line 106 of file ZPlainSqLite28.pas.

const SQLITE_DROP_INDEX = 10

Definition at line 135 of file ZPlainSqLite28.pas.

const SQLITE_DROP_TABLE = 11

Definition at line 136 of file ZPlainSqLite28.pas.

Definition at line 137 of file ZPlainSqLite28.pas.

Definition at line 138 of file ZPlainSqLite28.pas.

Definition at line 139 of file ZPlainSqLite28.pas.

Definition at line 140 of file ZPlainSqLite28.pas.

const SQLITE_DROP_TRIGGER = 16

Definition at line 141 of file ZPlainSqLite28.pas.

const SQLITE_DROP_VIEW = 17

Definition at line 142 of file ZPlainSqLite28.pas.

const SQLITE_EMPTY = 16

Definition at line 94 of file ZPlainSqLite28.pas.

const SQLITE_ERROR = 1

Definition at line 79 of file ZPlainSqLite28.pas.

Definition at line 394 of file ZPlainSqLite28.pas.

Definition at line 386 of file ZPlainSqLite28.pas.

Definition at line 442 of file ZPlainSqLite28.pas.

const SQLITE_FORMAT = 24

Definition at line 102 of file ZPlainSqLite28.pas.

Definition at line 406 of file ZPlainSqLite28.pas.

Definition at line 408 of file ZPlainSqLite28.pas.

const SQLITE_FULL = 13

Definition at line 91 of file ZPlainSqLite28.pas.

Definition at line 418 of file ZPlainSqLite28.pas.

Definition at line 404 of file ZPlainSqLite28.pas.

const SQLITE_IGNORE = 2

Definition at line 155 of file ZPlainSqLite28.pas.

const SQLITE_INSERT = 18

Definition at line 143 of file ZPlainSqLite28.pas.

const SQLITE_INTERNAL = 2

Definition at line 80 of file ZPlainSqLite28.pas.

Definition at line 396 of file ZPlainSqLite28.pas.

const SQLITE_IOERR = 10

Definition at line 88 of file ZPlainSqLite28.pas.

const SQLITE_ISO8859 = 1

Definition at line 72 of file ZPlainSqLite28.pas.

Definition at line 456 of file ZPlainSqLite28.pas.

Definition at line 388 of file ZPlainSqLite28.pas.

Definition at line 392 of file ZPlainSqLite28.pas.

Definition at line 412 of file ZPlainSqLite28.pas.

Definition at line 410 of file ZPlainSqLite28.pas.

const SQLITE_LOCKED = 6

Definition at line 84 of file ZPlainSqLite28.pas.

const SQLITE_MISMATCH = 20

Definition at line 98 of file ZPlainSqLite28.pas.

const SQLITE_MISUSE = 21

Definition at line 99 of file ZPlainSqLite28.pas.

const SQLITE_NOLFS = 22

Definition at line 100 of file ZPlainSqLite28.pas.

const SQLITE_NOMEM = 7

Definition at line 85 of file ZPlainSqLite28.pas.

const SQLITE_NOTADB = 26

Definition at line 104 of file ZPlainSqLite28.pas.

const SQLITE_NOTFOUND = 12

Definition at line 90 of file ZPlainSqLite28.pas.

const SQLITE_NUMERIC = -1

Definition at line 108 of file ZPlainSqLite28.pas.

const SQLITE_OK = 0

Definition at line 78 of file ZPlainSqLite28.pas.

Definition at line 376 of file ZPlainSqLite28.pas.

Definition at line 452 of file ZPlainSqLite28.pas.

const SQLITE_PERM = 3

Definition at line 81 of file ZPlainSqLite28.pas.

const SQLITE_PRAGMA = 19

Definition at line 144 of file ZPlainSqLite28.pas.

Definition at line 448 of file ZPlainSqLite28.pas.

const SQLITE_PROTOCOL = 15

Definition at line 93 of file ZPlainSqLite28.pas.

const SQLITE_RANGE = 25

Definition at line 103 of file ZPlainSqLite28.pas.

const SQLITE_READ = 20

Definition at line 145 of file ZPlainSqLite28.pas.

const SQLITE_READONLY = 8

Definition at line 86 of file ZPlainSqLite28.pas.

Definition at line 454 of file ZPlainSqLite28.pas.

Definition at line 444 of file ZPlainSqLite28.pas.

const SQLITE_ROW = 100

Definition at line 105 of file ZPlainSqLite28.pas.

const SQLITE_SCHEMA = 17

Definition at line 95 of file ZPlainSqLite28.pas.

const SQLITE_SELECT = 21

Definition at line 146 of file ZPlainSqLite28.pas.

Definition at line 434 of file ZPlainSqLite28.pas.

Definition at line 424 of file ZPlainSqLite28.pas.

Definition at line 426 of file ZPlainSqLite28.pas.

Definition at line 422 of file ZPlainSqLite28.pas.

Definition at line 420 of file ZPlainSqLite28.pas.

Definition at line 440 of file ZPlainSqLite28.pas.

const SQLITE_TEXT = -2

Definition at line 109 of file ZPlainSqLite28.pas.

const SQLITE_TOOBIG = 18

Definition at line 96 of file ZPlainSqLite28.pas.

Definition at line 436 of file ZPlainSqLite28.pas.

const SQLITE_TRANSACTION = 22

Definition at line 147 of file ZPlainSqLite28.pas.

const SQLITE_UPDATE = 23

Definition at line 148 of file ZPlainSqLite28.pas.

Definition at line 428 of file ZPlainSqLite28.pas.

const SQLITE_VERSION = "2.8.13"

Definition at line 75 of file ZPlainSqLite28.pas.

const TEMP_MASTER_NAME = "sqlite_temp_master"

Definition at line 74 of file ZPlainSqLite28.pas.

const WINDOWS_DLL_LOCATION = "sqlite.dll"

Definition at line 69 of file ZPlainSqLite28.pas.


Generated on Wed Dec 30 08:42:43 2009 for zeoslib by  doxygen 1.5.7.1