SQLite Consortium Agreement
(consortium_agreement-20071201.html)
... 2.3.5 Audits
Hwaci shall keep and maintain complete and accurate records
of the use of development funds provided by Company
and shall allow Company, or its representative, a certified
public accountant mutually acceptable to Hwaci and Company,
during ...
|
The Bytecode() And Tables_Used() Table-Valued Functions
(bytecodevtab.html)
2.1. Schema
... This will be "main" for the main database (the usual case), or "temp" for
TEMP tables and indexes, or the name assigned to attached databases by
the ATTACH statement.
name → The name of the table or index
wr &rarr ...
|
C API: Enable Or Disable Extension Loading
(c3ref/enable_load_extension.html)
sqlite3_enable_load_extension()
... Call the sqlite3_enable_load_extension() routine with onoff==1
to turn extension loading on and call it with onoff==0 to turn
it back off again.
This interface enables or disables both the C-API
sqlite3_load_extension() and the SQL function load_extension().
Use ...
|
C API: Enable Or Disable Shared Pager Cache
(c3ref/enable_shared_cache.html)
sqlite3_enable_shared_cache()
This routine enables or disables the sharing of the database cache
and schema data structures between connections
to the same database. Sharing is enabled if the argument is true
and disabled if the argument is false.
This interface is omitted ...
|
C API: Create Or Redefine SQL Functions
(c3ref/create_function.html)
sqlite3_create_function(), sqlite3_create_function16(), sqlite3_create_function_v2(), sqlite3_create_window_function()
... An aggregate SQL function requires an implementation of xStep
and xFinal and NULL pointer must be passed for xFunc. To delete an existing
SQL function or aggregate, pass NULL pointers for all three function
callbacks.
The sixth, seventh, eighth and ...
|
SQLite As An Application File Format
(appfileformat.html)
... An SQLite database can have dozens
or hundreds or thousands of different tables, with dozens or
hundreds or thousands of fields per table, each with different datatypes
and constraints and particular meanings, all cross-referencing each other,
appropriately and automatically ...
|
SQLite Consortium
(consortium.html)
... Consortium members can call any developer at any time, day or
night, and expect to get their full and immediate attention.
Consortium members have access to the home telephone numbers
and cellphone numbers and work schedules of the core developers ...
|
C API: Error Codes And Messages
(c3ref/errcode.html)
sqlite3_errcode(), sqlite3_extended_errcode(), sqlite3_errmsg(), sqlite3_errmsg16(), sqlite3_errstr(), sqlite3_error_offset()
... sqlite3_errcode()
sqlite3_extended_errcode()
sqlite3_errmsg()
sqlite3_errmsg16()
sqlite3_error_offset()
The sqlite3_errmsg() and sqlite3_errmsg16() return English-language
text that describes the error, as either UTF-8 or UTF-16 respectively,
or NULL if no error message is available.
(See how SQLite handles invalid UTF for ...
|
C API: Result Values From A Query
(c3ref/column_blob.html)
sqlite3_column_blob(), sqlite3_column_double(), sqlite3_column_int(), sqlite3_column_int64(), sqlite3_column_text(), sqlite3_column_text16 ...
... Note that when type conversions occur, pointers returned by prior
calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
sqlite3_column_text16() may be invalidated.
Type conversions and pointer invalidations might occur
in the following cases:
The initial content is a BLOB and sqlite3_column_text() or ...
|
SQLite In 5 Minutes Or Less
(quickstart.html)
Here is what you do to start experimenting with SQLite without having
to do a lot of tedious reading and configuration:
Download The Code
Get a copy of the prebuilt binaries for your machine, or get a copy
of the ...
|
Page generated by FTS5 in about 557.69 ms.