Home
last modified time | relevance | path

Searched refs:sqlite3_column_double (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/kyua/utils/sqlite/
H A Dstatement.cpp296 return ::sqlite3_column_double(_pimpl->stmt, index); in column_double()
/freebsd/crypto/heimdal/lib/hdb/
H A Dhdb-sqlite.c350 hsdb->version = sqlite3_column_double(hsdb->get_version, 0); in hdb_sqlite_make_database()
/freebsd/contrib/sqlite3/
H A Dsqlite3ext.h424 #define sqlite3_column_double sqlite3_api->column_double macro
H A Dsqlite3.h5468 SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
H A Dshell.c3537 double r = sqlite3_column_double(pStmt,i); in sha1QueryFunc()
23171 double r = sqlite3_column_double(p->pStmt, i); in shell_callback()
23217 double r = sqlite3_column_double(p->pStmt, i); in shell_callback()
23264 double r = sqlite3_column_double(p->pStmt, i); in shell_callback()
26680 sqlite3_bind_double(pInsert, i+1, sqlite3_column_double(pQuery,i)); in tryToCloneData()
31573 double countIrreversible = sqlite3_column_double(pCheckStmt, 0); in do_meta_command()
H A Dsqlite3.c5787 SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
92842 SQLITE_API double sqlite3_column_double(sqlite3_stmt *pStmt, int i){
138770 #define sqlite3_column_double sqlite3_api->column_double
139218 sqlite3_column_double,
229451 double rVal = sqlite3_column_double(pDflt, iField);
230716 double r = sqlite3_column_double(pStmt, iCol);
230802 if( dVal==sqlite3_column_double(pStmt, i) ) break;
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1842 return Tcl_NewDoubleObj(sqlite3_column_double(pStmt, iCol)); in dbEvalColumnValue()