Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/kyua/utils/sqlite/
H A Dstatement.cpp296 return ::sqlite3_column_double(_pimpl->stmt, index); in column_double()
/freebsd-13.1/crypto/heimdal/lib/hdb/
H A Dhdb-sqlite.c350 hsdb->version = sqlite3_column_double(hsdb->get_version, 0); in hdb_sqlite_make_database()
/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3ext.h400 #define sqlite3_column_double sqlite3_api->column_double macro
H A Dsqlite3.h5078 SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
H A Dshell.c2085 double r = sqlite3_column_double(pStmt,i); in sha3QueryFunc()
13377 double r = sqlite3_column_double(p->pStmt, i); in shell_callback()
13418 double r = sqlite3_column_double(p->pStmt, i); in shell_callback()
13465 double r = sqlite3_column_double(p->pStmt, i); in shell_callback()
16340 sqlite3_bind_double(pInsert, i+1, sqlite3_column_double(pQuery,i)); in tryToCloneData()
H A Dsqlite3.c5384 SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
85580 SQLITE_API double sqlite3_column_double(sqlite3_stmt *pStmt, int i){
127714 #define sqlite3_column_double sqlite3_api->column_double
128138 sqlite3_column_double,
210640 double r = sqlite3_column_double(pStmt, iCol);
210726 if( dVal==sqlite3_column_double(pStmt, i) ) break;
/freebsd-13.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1776 return Tcl_NewDoubleObj(sqlite3_column_double(pStmt, iCol)); in dbEvalColumnValue()