Searched refs:sqlite3 (Results 1 - 25 of 31) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna/
H A Dsql.h13 #include <sqlite3.h>
16 sql_exec(sqlite3 *db, const char *fmt, ...);
19 sql_get_table(sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn);
22 sql_get_int_field(sqlite3 *db, const char *fmt, ...);
H A Dtivo_utils.h12 #include <sqlite3.h>
H A Dupnpglobalvars.h22 #include <sqlite3.h>
115 extern sqlite3 *db;
H A Dsql.c24 sql_exec(sqlite3 *db, const char *fmt, ...)
48 sql_get_table(sqlite3 *db, const char *sql, char ***pazResult, int *pnRow, int *pnColumn)
66 sql_get_int_field(sqlite3 *db, const char *fmt, ...)
H A Dupnpglobalvars.c46 sqlite3 * db;
H A Dtivo_utils.c24 #include <sqlite3.h>
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.07.26/
H A Dsql.h13 #include <sqlite3.h>
16 sql_exec(sqlite3 *db, const char *fmt, ...);
19 sql_get_table(sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn);
22 sql_get_int_field(sqlite3 *db, const char *fmt, ...);
H A Dtivo_utils.h12 #include <sqlite3.h>
H A Dupnpglobalvars.h22 #include <sqlite3.h>
114 extern sqlite3 *db;
H A Dsql.c24 sql_exec(sqlite3 *db, const char *fmt, ...)
48 sql_get_table(sqlite3 *db, const char *sql, char ***pazResult, int *pnRow, int *pnColumn)
66 sql_get_int_field(sqlite3 *db, const char *fmt, ...)
H A Dupnpglobalvars.c44 sqlite3 * db;
H A Dtivo_utils.c24 #include <sqlite3.h>
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/
H A Dsql.h27 #include <sqlite3.h>
30 sql_exec(sqlite3 *db, const char *fmt, ...);
33 sql_get_table(sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn);
36 sql_get_int_field(sqlite3 *db, const char *fmt, ...);
39 sql_get_text_field(sqlite3 *db, const char *fmt, ...);
42 db_upgrade(sqlite3 *db);
H A Dtivo_utils.h26 #include <sqlite3.h>
H A Dupnpglobalvars.c87 sqlite3 * db;
H A Dupnpglobalvars.h57 #include <sqlite3.h>
268 extern sqlite3 *db;
H A Dsql.c27 sql_exec(sqlite3 *db, const char *fmt, ...)
51 sql_get_table(sqlite3 *db, const char *sql, char ***pazResult, int *pnRow, int *pnColumn)
69 sql_get_int_field(sqlite3 *db, const char *fmt, ...)
129 sql_get_text_field(sqlite3 *db, const char *fmt, ...)
205 db_upgrade(sqlite3 *db)
H A Dtivo_utils.c24 #include <sqlite3.h>
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/
H A DMakefile.am5 libsqlite3_la_SOURCES = sqlite3.c
8 bin_PROGRAMS = sqlite3
9 sqlite3_SOURCES = shell.c sqlite3.h
13 include_HEADERS = sqlite3.h sqlite3ext.h
15 EXTRA_DIST = sqlite3.pc sqlite3.1
17 pkgconfig_DATA = sqlite3.pc
19 man_MANS = sqlite3.1
H A Dsqlite3ext.h16 ** sqlite3.h.
20 #include "sqlite3.h"
48 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);
49 int (*busy_timeout)(sqlite3*,int ms);
50 int (*changes)(sqlite3*);
51 int (*close)(sqlite3*);
52 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const char*));
53 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,in
[all...]
H A Dsqlite3.h30 ** the version number) and changes its name to "sqlite3.h" as
86 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
192 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3
198 ** sqlite3 object.
200 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
242 ** ^The sqlite3_close() routine is the destructor for the [sqlite3] object.
243 ** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is
248 ** the [sqlite3] objec
[all...]
H A DMakefile.in42 bin_PROGRAMS = sqlite3$(EXEEXT)
45 $(srcdir)/sqlite3.pc.in $(top_srcdir)/configure INSTALL \
55 CONFIG_CLEAN_FILES = sqlite3.pc
68 am_libsqlite3_la_OBJECTS = sqlite3.lo
214 libsqlite3_la_SOURCES = sqlite3.c
216 sqlite3_SOURCES = shell.c sqlite3.h
219 include_HEADERS = sqlite3.h sqlite3ext.h
220 EXTRA_DIST = sqlite3.pc sqlite3.1
222 pkgconfig_DATA = sqlite3
[all...]
H A Dshell.c24 #include "sqlite3.h"
208 static int genfkey_create_triggers(sqlite3 *, const char *, void *,
219 /* The code in this file defines a sqlite3 virtual-table module that
295 sqlite3 *db;
320 sqlite3 *db,
347 pVtab->db = (sqlite3 *)pAux;
575 static int installSchemaModule(sqlite3 *db, sqlite3 *sdb){
733 sqlite3 *db, /* Database connection */
766 static int populateTempTable(sqlite3 *d
[all...]
H A Dsqlite3.c11 ** programs, you need this file and the "sqlite3.h" header file that defines
13 ** the "sqlite3.h" header file at hand, you will find a copy embedded within
14 ** the text of this file. Search for "Begin file sqlite3.h" to find the start
15 ** of the embedded sqlite3.h header file.) Additional code files may be needed
17 ** language. The code for the "sqlite3" command-line shell is also in a
523 /************** Include sqlite3.h in the middle of sqliteInt.h ***************/
524 /************** Begin file sqlite3.h *****************************************/
554 ** the version number) and changes its name to "sqlite3.h" as
610 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
716 ** the opaque structure named "sqlite3"
724 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
8288 struct sqlite3 { struct
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/
H A DMakefile43 all: zlib libogg libexif sqlite3 libvorbis flac libid3tag
75 sqlite3:

Completed in 189 milliseconds

12