| /freebsd/contrib/sqlite3/ |
| H A D | Makefile.in | 108 sqlite3.pc: $(TOP)/sqlite3.pc.in $(AS_AUTO_DEF) 117 # CFLAGS for sqlite3$(T.exe) 138 sqlite3.o: $(TOP)/sqlite3.h $(TOP)/sqlite3.c 139 $(CC) -c $(TOP)/sqlite3.c -o $@ $(CFLAGS) $(CFLAGS.libsqlite3) 147 $(libsqlite3.DLL): sqlite3.o 148 $(CC) -o $@ sqlite3.o $(LDFLAGS.shlib) \ 155 $(libsqlite3.LIB): sqlite3.o 156 $(AR) $(AR.flags) $@ sqlite3.o 222 # Flags to link the shell app either directly against sqlite3.c 226 sqlite3-shell-link-flags.1 = $(TOP)/sqlite3.c $(LDFLAGS.libsqlite3) [all …]
|
| H A D | sqlite3ext.h | 16 ** sqlite3.h. 20 #include "sqlite3.h" 46 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*); 47 int (*busy_timeout)(sqlite3*,int ms); 48 int (*changes)(sqlite3*); 49 int (*close)(sqlite3*); 50 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*, 52 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*, 75 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); 78 int (*create_collation)(sqlite3*,const char*,int,void*, [all …]
|
| H A D | sqlite3.1 | 5 .TH SQLITE3 1 "Fri Aug 11 23:50:12 CET 2023" 19 .B sqlite3 23 .B sqlite3 30 .B sqlite3 33 .B sqlite3 39 .B sqlite3 41 .B sqlite3 50 .B sqlite3 mydata.db 88 .B sqlite3 -line mydata.db 'select * from memos where priority > 20;' 121 .B sqlite3 [all …]
|
| H A D | README.txt | 3 * the SQLite library amalgamation source code file: sqlite3.c 4 * the sqlite3.h and sqlite3ext.h header files that define the C-language 5 interface to the sqlite3.c library file 6 * the shell.c file used to build the sqlite3 command-line shell program 9 * a Makefile.msc, sqlite3.rc, and Replace.cs for building with Microsoft 21 This package contains a pre-build SQLite amalgamation file "sqlite3.c" 22 (and its associated header file "sqlite3.h"). Because the
|
| H A D | Makefile.fallback | 18 sqlite3: shell.c sqlite3.c 19 $(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)
|
| H A D | Makefile.msc | 22 # the generated sqlite3.c. Any sqlite3 extensions added this 261 SQLITE3C = sqlite3-all.c 263 SQLITE3C = sqlite3.c 271 SQLITE3H = sqlite3.h 280 SQLITE3DLL = sqlite3.dll 290 SQLITE3LIB = sqlite3.lib 300 SQLITE3EXE = sqlite3.exe 453 # nmake /f Makefile.msc sqlite3.dll 460 # nmake /f Makefile.msc sqlite3.dll 595 CORE_LINK_DEP = sqlite3.def [all …]
|
| H A D | sqlite3.h | 30 ** the version number) and changes its name to "sqlite3.h" as 122 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header 125 ** SQLite3) and Y is the minor version number and Z is the release number.)^ 263 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3 270 ** sqlite3 object. 272 typedef struct sqlite3 sqlite3; typedef 317 ** DESTRUCTOR: sqlite3 320 ** for the [sqlite3] object. 322 ** the [sqlite3] object is successfully destroyed and all associated 328 ** with the [sqlite3] object prior to attempting to close the object. [all …]
|
| H A D | sqlite3.rc | 26 #include "sqlite3.h" 72 VALUE "InternalName", "sqlite3"
|
| /freebsd/contrib/sqlite3/tea/doc/ |
| H A D | sqlite3.n | 1 .TH sqlite3 n 4.1 "Tcl-Extensions" 2 .HS sqlite3 tcl 5 sqlite3 \- an interface to the SQLite3 database engine 7 \fBsqlite3\fI command_name ?filename?\fR 10 SQLite3 is a self-contains, zero-configuration, transactional SQL database
|
| /freebsd/lib/libsqlite3/ |
| H A D | Makefile | 3 LIB= sqlite3 7 SRCS= sqlite3.c 8 INCS= sqlite3.h sqlite3ext.h 10 SQLITE= ${SRCTOP}/contrib/sqlite3
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | sql | 113 #!:mime application/x-sqlite3 114 # seldom found extension sqlite3 like in SyncData.sqlite3 144 !:mime application/x-audacity-project+sqlite3 151 !:mime application/vnd.sqlite3 158 !:mime application/vnd.sqlite3 164 !:mime application/vnd.sqlite3 172 !:mime application/vnd.sqlite3 181 # https://www.iana.org/assignments/media-types/application/geopackage+sqlite3 182 !:mime application/geopackage+sqlite3 189 !:mime application/geopackage+sqlite3 [all …]
|
| /freebsd/contrib/kyua/utils/sqlite/ |
| H A D | test_utils.hpp | 74 /// Gets the pointer to the internal sqlite3 of a database object. 80 /// \return The internal sqlite3 of the input database. 81 static inline ::sqlite3* 100 static void create_test_table(::sqlite3*) UTILS_UNUSED; 113 create_test_table(::sqlite3* db) in create_test_table() 121 static void verify_test_table(::sqlite3*) UTILS_UNUSED; 132 verify_test_table(::sqlite3* db) in verify_test_table()
|
| H A D | c_gate.cpp | 63 /// take care to properly destroy the input sqlite3 when you are done with it to 70 sqlite::database_c_gate::connect(::sqlite3* raw_database) in connect() 78 /// \return A native sqlite3 object holding the SQLite 3 C API database. 79 ::sqlite3* 82 return static_cast< ::sqlite3* >(_database.raw_database()); in c_database()
|
| H A D | database.cpp | 32 #include <sqlite3.h> 61 ::sqlite3* db; 76 impl(optional< fs::path > db_filename_, ::sqlite3* db_, const bool owned_) : in impl() 105 static ::sqlite3* 108 ::sqlite3* db; in safe_open() 152 _pimpl(new impl(db_filename_, static_cast< ::sqlite3* >(db_), owned_)) in database() 231 /// Gets the internal sqlite3 object. 234 /// prevent including the sqlite3.h header file from our public interface. The
|
| H A D | c_gate_test.cpp | 45 ::sqlite3* raw_db; in ATF_TEST_CASE_BODY() 66 ::sqlite3* raw_db = gate.c_database(); in ATF_TEST_CASE_BODY() 77 "sqlite3 object"); in ATF_TEST_CASE_HEAD() 81 ::sqlite3* raw_db; in ATF_TEST_CASE_BODY()
|
| H A D | c_gate.hpp | 38 #include <sqlite3.h> 65 static database connect(::sqlite3*); 67 ::sqlite3* c_database(void);
|
| H A D | exceptions_test.cpp | 32 #include <sqlite3.h> 91 // Use the raw sqlite3 API to cause an error. Our C++ wrappers catch all in ATF_TEST_CASE_BODY()
|
| H A D | exceptions.cpp | 32 #include <sqlite3.h> 132 ::sqlite3* c_db = database_c_gate(database_).c_database(); in from_database()
|
| /freebsd/contrib/kyua/integration/ |
| H A D | cmd_db_migrate_test.sh | 43 cat "${@}" | sqlite3 "${HOME}/.kyua/store.db" 53 cat "${@}" | sqlite3 "${HOME}/.kyua/store/${dbname}" 64 atf_set require.progs "sqlite3" 89 atf_set require.progs "sqlite3" 111 atf_set require.progs "sqlite3" 123 atf_set require.progs "sqlite3"
|
| /freebsd/sys/contrib/openzfs/.github/workflows/ |
| H A D | smatch.yml | 23 …sudo apt-get install -y llvm gcc make sqlite3 libsqlite3-dev libdbd-sqlite3-perl libssl-dev libtry…
|
| /freebsd/crypto/heimdal/lib/hdb/ |
| H A D | hdb-sqlite.c | 35 #include "sqlite3.h" 41 sqlite3 *db; 127 sqlite3 *db, in hdb_sqlite_prepare_stmt() 157 * @param database An open sqlite3 database handle 165 sqlite3 *database, in hdb_sqlite_exec_stmt() 192 * Opens an sqlite3 database handle to a file, may create the 226 hdb_sqlite_step(krb5_context context, sqlite3 *db, sqlite3_stmt *stmt) in hdb_sqlite_step() 451 * @param statement A prepared sqlite3 statement
|
| /freebsd/contrib/kyua/ |
| H A D | configure.ac | 81 PKG_CHECK_MODULES([SQLITE3], [sqlite3 >= 3.6.22], 83 AC_MSG_ERROR([sqlite3 (3.6.22 or newer) is required]))
|
| /freebsd/contrib/mandoc/ |
| H A D | mansearch.3 | 118 he rewrote it for SQLite3 in 2012, and 120 removed the dependency on SQLite3 in 2016.
|
| /freebsd/kerberos5/lib/libhdb/ |
| H A D | Makefile | 6 LIBADD= asn1 com_err krb5 roken sqlite3 heimbase 61 -I${KRB5DIR}/lib/roken -I${SRCTOP}/contrib/sqlite3/ \
|
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | scache.c | 38 #include <sqlite3.h> 43 sqlite3 *db; 196 prepare_stmt(krb5_context context, sqlite3 *db, in prepare_stmt() 212 exec_stmt(krb5_context context, sqlite3 *db, const char *str, in exec_stmt() 228 default_db(krb5_context context, sqlite3 **db) in default_db() 257 sqlite3 *db; in get_def_name() 454 sqlite3 *db, in bind_principal() 1150 sqlite3 *db;
|