C API: Add Content To A Dynamic String
(c3ref/str_append.html)
sqlite3_str_appendf(), sqlite3_str_vappendf(), sqlite3_str_append(), sqlite3_str_appendall(), sqlite3_str_appendchar(), sqlite3_str_reset()
... The sqlite3_str_append(X,S,N) method appends exactly N bytes from string S
onto the end of the sqlite3_str object X. N must be non-negative.
S must contain at least N non-zero bytes of content. To append a ...
|
C API: Serialize a database
(c3ref/serialize.html)
sqlite3_serialize()
The sqlite3_serialize(D,S,P,F) interface returns a pointer to memory
that is a serialization of the S database on database connection D.
If P is not a NULL pointer, then the size of the database in bytes
is ...
|
C API: Prepared Statement Scan Status Opcodes
(c3ref/c_scanstat_est.html)
SQLITE_SCANSTAT_NLOOP, SQLITE_SCANSTAT_NVISIT, SQLITE_SCANSTAT_EST, SQLITE_SCANSTAT_NAME, SQLITE_SCANSTAT_EXPLAIN, SQLITE_SCANSTAT_SELECTID ...
The following constants can be used for the T parameter to the
sqlite3_stmt_scanstatus(S,X,T,V) interface. Each constant designates a
different metric for sqlite3_stmt_scanstatus() to return.
When the value returned to V is a string, space to hold ...
|
SQLite In 5 Minutes Or Less
(quickstart.html)
... 01 #include <stdio.h>
02 #include <sqlite3.h>
03
04 static int callback(void *NotUsed, int argc, char **argv, char **azColName){
05 int i;
06 for(i=0; i<argc; i++){
07 printf("%s = %s ...
|
C API: Unlock Notification
(c3ref/unlock_notify.html)
sqlite3_unlock_notify()
... For example, if connection X is waiting for
connection Y's transaction to be concluded, and similarly connection
Y is waiting on connection X's transaction, then neither connection
will proceed and the system may remain deadlocked indefinitely.
To avoid ...
|
SQLite Consortium Agreement
(consortium_agreement-20071201.html)
... 2.1.4 Custom Builds
The SQLite Developers shall at Company's request provide Company
with specialized builds of SQLite according to Company's specifications.
2.1.5 Legacy Support
The SQLite Developers shall at Company's request provide support ...
|
C API: Allowed return values from sqlite3_txn_state()
(c3ref/c_txn_none.html)
SQLITE_TXN_NONE, SQLITE_TXN_READ, SQLITE_TXN_WRITE
... The sqlite3_txn_state(D,S) interface returns one of these
constants in order to describe the transaction state of schema S
in database connection D.
SQLITE_TXN_NONE
The SQLITE_TXN_NONE state means that no transaction is currently
pending.
SQLITE_TXN_READ
The SQLITE_TXN_READ state means ...
|
pressrelease-20071212.html
(pressrelease-20071212.html)
... SQLite Consortium Launches With Mozilla And Symbian As Charter Members
Ensures independent technical direction for world's
most deployed SQL database engine
Charlotte, North Carolina - December 12, 2007 - The SQLite Consortium,
a new membership association dedicated to maintaining SQLite as ...
|
C API: Online Backup API.
(c3ref/backup_finish.html)
sqlite3_backup_init(), sqlite3_backup_step(), sqlite3_backup_finish(), sqlite3_backup_remaining(), sqlite3_backup_pagecount()
... The S and M arguments passed to
sqlite3_backup_init(D,N,S,M) identify the database connection
and database name of the source database, respectively.
The source and destination database connections (parameters S and D)
must be different or else sqlite3_backup_init ...
|
C API: Find the next prepared statement
(c3ref/next_stmt.html)
sqlite3_next_stmt()
... The database connection pointer D in a call to
sqlite3_next_stmt(D,S) must refer to an open database
connection and in particular must not be a NULL pointer.
See also lists of
Objects,
Constants, and
Functions.
|
Page generated by FTS5 in about 69.08 ms.