Small. Fast. Reliable.
Choose any three.

Search results 1..10 of 60 for: sqlite3

C API: Database Connection Handle
(c3ref/sqlite3.html)
struct sqlite3
Each open SQLite database is represented by a pointer to an instance of the opaque structure named "sqlite3". It is useful to think of an sqlite3 pointer as an object. The sqlite3_open(), sqlite3_open16(), and sqlite3_open_v2() interfaces are its constructors, and ... 
The SQLite Amalgamation
(amalgamation.html)
3. The Split Amalgamation  ... Then there is a separate source file named "sqlite3-all.c" which basically consists of code like this: #include "sqlite3-1.c" #include "sqlite3-2.c" #include "sqlite3-3.c" #include "sqlite3-4.c" #include "sqlite3-5.c" #include "sqlite3 ... 
How To Compile SQLite
(howtocompile.html)
3. Compiling The Command-Line Interface  ... cl shell.c sqlite3.c -Fesqlite3.exe On Unix systems the command typically looks something like this: gcc shell.c sqlite3.c -lpthread -ldl -lm -o sqlite3 The pthreads library is needed to make SQLite threadsafe. But since the CLI ... 
sqlite3_close(), sqlite3_close_v2()
The sqlite3_close() and sqlite3_close_v2() routines are destructors for the sqlite3 object. Calls to sqlite3_close() and sqlite3_close_v2() return SQLITE_OK if the sqlite3 object is successfully destroyed and all associated resources are deallocated. Ideally, applications should finalize all prepared statements, close all ... 
SQLite In 5 Minutes Or Less
(quickstart.html)
 ... The name of the CLI program is "sqlite3" (or "sqlite3.exe" on Windows). Use the CLI for manual interactions with a database. At a shell or DOS prompt, enter: "sqlite3 test.db". This will create a new database named "test ... 
 ... 2.1 Opening and closing a database typedef struct sqlite3 sqlite3; int sqlite3_open(const char*, sqlite3**); int sqlite3_open16(const void*, sqlite3**); int sqlite3_close(sqlite3*); const char *sqlite3_errmsg(sqlite3*); const void *sqlite3_errmsg16(sqlite3*); int sqlite3_errcode(sqlite3*); The sqlite3_open() routine returns an ... 
3.1. Source Code Files If you want to build the recovery API into your application, you will need to add some source files to your build, above and beyond the usual "sqlite3.c" and "sqlite3.h" source files. You will need: sqlite3recover.c This ... 
C API: Introduction
(c3ref/intro.html)
 ... A database connection object sqlite3, and the prepared statement object sqlite3_stmt. List Of Constants. This is a list of numeric constants used by SQLite and represented by #defines in the sqlite3.h header file. These constants are things such as ... 
TH3
(th3.html)
5. Mutation Testing  ... The script compiles the sqlite3.c source file into assembly language ("sqlite3.s") if necessary. The script loops through instructions in the assembly language file to locate branch operations. The script makes a copy of the original sqlite3.s file ... 
SQLITE_VERSION, SQLITE_VERSION_NUMBER, SQLITE_SOURCE_ID
The SQLITE_VERSION C preprocessor macro in the sqlite3.h header evaluates to a string literal that is the SQLite version in the format "X.Y.Z" where X is the major version number (always 3 for SQLite3) and Y is ... 

123456

Page generated by FTS5 in about 88.02 ms.