Searched refs:sqlite (Results 1 - 25 of 36) sorted by relevance

12

/osnet-11/usr/src/lib/libsqlite/
H A DMakefile17 HDRS= sqlite.h sqlite-misc.h
18 ROOTHDRDIR= $(ROOT)/usr/include/sqlite
21 CLEANFILES += sqlite.h
45 install_h: sqlite.h $(ROOTHDRS)
52 sqlite.h: $(SRCDIR)/sqlite.h.in
56 $(SRCDIR)/sqlite.h.in > $@
H A Dmain.mk93 $(TOP)/src/sqlite.h.in \
125 sqlite.h \
144 all: sqlite.h config.h libsqlite.a sqlite$(EXE)
157 sqlite$(EXE): $(TOP)/src/shell.c libsqlite.a sqlite.h
158 $(TCCX) $(READLINE_FLAGS) -o sqlite$(EXE) $(TOP)/src/shell.c \
185 rm tsrc/sqlite.h.in tsrc/parse.y
253 sqlite.h: $(TOP)/src/sqlite
[all...]
H A DMakefile.com96 MAPFILES = ../mapfile-sqlite
107 ../sqlite.h \
/osnet-11/usr/src/lib/libsqlite/test/
H A Dthreadtest2.c26 #include "sqlite.h"
59 int integrity_check(sqlite *db){
77 sqlite *db;
98 sqlite *db;
H A Dcrashtest1.c28 #include "sqlite.h"
33 sqlite *db;
72 sqlite *db;
H A Dtester.tcl22 if {[sqlite -tcl-uses-utf]} {
48 if {[sqlite -has-codec] && [info command sqlite_orig]==""} {
49 rename sqlite sqlite_orig
50 proc sqlite {args} { procedure
64 sqlite db ./test.db
H A Dthreadtest1.c27 #include "sqlite.h"
105 char **db_query(sqlite *db, const char *zFile, const char *zFormat, ...){
140 void db_execute(sqlite *db, const char *zFile, const char *zFormat, ...){
205 sqlite *db;
/osnet-11/usr/src/lib/libsqlite/src/
H A DsqliteInt.h20 #include "sqlite.h"
259 ** in the sqlite.aDb[] array. aDb[0] is the main database file and
312 ** The sqlite.file_format is initialized by the database file
324 ** The sqlite.temp_store determines where temporary database files
329 ** The sqlite.lastRowid records the last insert rowid generated by an
336 ** The sqlite.nChange does not count changes within triggers and keeps no
338 ** The sqlite.lsChange represents the number of changes made by the last
344 ** The sqlite.csChange keeps track of the number of current changes (since
347 struct sqlite { struct
392 ** Possible values for the sqlite
[all...]
H A Dvacuum.c41 sqlite *dbOld; /* Original database */
42 sqlite *dbNew; /* New database */
94 static int execsql(char **pzErrMsg, sqlite *db, const char *zSql){
221 int sqliteRunVacuum(char **pzErrMsg, sqlite *db){
226 sqlite *dbNew = 0; /* The new vacuumed database */
H A Dmain.c31 sqlite *db; /* The database being initialized */
73 sqlite *db = pData->db;
190 static int sqliteInitOne(sqlite *db, int iDb, char **pzErrMsg){
376 ** bit is set in the flags field of the sqlite structure. An
382 int sqliteInit(sqlite *db, char **pzErrMsg){
470 ** Open a new SQLite database. Construct an "sqlite" structure to define
478 sqlite *sqlite_open(const char *zFilename, int mode, char **pzErrMsg){
479 sqlite *db;
482 /* Allocate the sqlite data structure */
483 db = sqliteMalloc( sizeof(sqlite) );
[all...]
H A Dtest1.c34 ** Decode a pointer to an sqlite object.
36 static int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite **ppDb){
98 sqlite *db;
148 sqlite *db;
206 sqlite *db;
253 sqlite *db;
277 sqlite *db;
364 sqlite_exec((sqlite*)sqlite_user_data(context), argv[0],
391 sqlite *db;
392 extern void Md5_Register(sqlite*);
[all...]
H A Dauth.c77 sqlite *db,
111 sqlite *db = pParse->db;
177 sqlite *db = pParse->db;
H A Dvdbe.h90 Vdbe *sqliteVdbeCreate(sqlite*);
H A Dbuild.c41 sqlite *db = pParse->db;
71 sqlite *db = pParse->db;
108 Table *sqliteFindTable(sqlite *db, const char *zName, const char *zDatabase){
160 Index *sqliteFindIndex(sqlite *db, const char *zName, const char *zDb){
180 static void sqliteDeleteIndex(sqlite *db, Index *p){
198 void sqliteUnlinkAndDeleteIndex(sqlite *db, Index *pIndex){
221 void sqliteResetInternalSchema(sqlite *db, int iDb){
292 void sqliteRollbackInternalChanges(sqlite *db){
301 void sqliteCommitInternalChanges(sqlite *db){
312 ** foreign keys from the sqlite
[all...]
H A Dattach.c33 sqlite *db;
99 extern int sqliteCodecAttach(sqlite*, int, void*, int);
141 sqlite *db;
195 sqlite *db;
H A Ddelete.c72 sqlite *db; /* Main database structure */
340 sqlite *db, /* The database containing the index */
371 sqlite *db, /* The database containing the index */
H A Dfunc.c315 sqlite *db = sqlite_user_data(context);
324 sqlite *db = sqlite_user_data(context);
334 sqlite *db = sqlite_user_data(context);
669 void sqliteRegisterBuiltinFunctions(sqlite *db){
H A Dcopy.c45 sqlite *db = pParse->db;
H A Dprintf.c790 ** sqlite_exec() and sqlite_get_table() interfaces. See the sqlite.h
797 sqlite *db, /* An open database */
813 sqlite *db, /* An open database */
829 sqlite *db, /* An open database */
846 sqlite *db, /* An open database */
H A Dtable.c129 sqlite *db, /* The database on which the SQL executes */
H A Dtrigger.c58 sqlite *db = pParse->db;
168 sqlite *db = pParse->db; /* The database */
397 sqlite *db = pParse->db;
428 sqlite *db = pParse->db;
H A DvdbeInt.h148 ** There is a typedef for this structure in sqlite.h. So all routines,
234 sqlite *db; /* The whole database */
H A Dpragma.c96 sqlite *db = pParse->db;
132 sqlite *db = pParse->db;
165 sqlite *db = pParse->db;
H A Dtest4.c45 sqlite *db; /* Open database */
572 ** Interchange the sqlite* pointer between two threads.
581 sqlite *temp;
/osnet-11/usr/src/lib/libsqlite/tool/
H A Dspace_used.tcl19 sqlite db [lindex $argv 0]

Completed in 44 milliseconds

12