Home
last modified time | relevance | path

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

/freebsd/crypto/heimdal/lib/hdb/
H A Dhdb-sqlite.c551 sqlite3_bind_int64(hsdb->delete_aliases, 1, entry_id); in hdb_sqlite_store()
558 sqlite3_bind_int64(hsdb->update_entry, 2, entry_id); in hdb_sqlite_store()
583 sqlite3_bind_int64(hsdb->add_alias, 2, entry_id); in hdb_sqlite_store()
/freebsd/contrib/kyua/utils/sqlite/
H A Dstatement.cpp538 const int error = ::sqlite3_bind_int64(_pimpl->stmt, index, value); in bind()
/freebsd/contrib/sqlite3/
H A Dsqlite3ext.h402 #define sqlite3_bind_int64 sqlite3_api->bind_int64 macro
H A Dsqlite3.h4901 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
H A Dshell.c18060 sqlite3_bind_int64(pStmt, 2, pgno); in dbdataLoadPage()
19425 sqlite3_bind_int64(pStmt, 1, pgno); in recoverGetPage()
20221 sqlite3_bind_int64(pLaf->pFindRoot, 1, iPg); in recoverLostAndFoundFindRoot()
20250 sqlite3_bind_int64(pPageData, 1, iPage); in recoverLostAndFoundOnePage()
20257 sqlite3_bind_int64(pInsert, 1, iRoot); /* rootpgno */ in recoverLostAndFoundOnePage()
20258 sqlite3_bind_int64(pInsert, 2, iPage); /* pgno */ in recoverLostAndFoundOnePage()
20261 sqlite3_bind_int64(pInsert, 4, iRowid); /* id */ in recoverLostAndFoundOnePage()
20471 sqlite3_bind_int64(pSel, 1, iRoot); in recoverWriteDataStep()
20510 sqlite3_bind_int64(pInsert, iBind, p1->iRowid); in recoverWriteDataStep()
20517 sqlite3_bind_int64(pInsert, pTab->iRowidBind, p1->iRowid); in recoverWriteDataStep()
[all …]
H A Dsqlite3.c5220 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
93208 return sqlite3_bind_int64(p, i, (i64)iValue);
93210 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
93289 rc = sqlite3_bind_int64(pStmt, i, pValue->u.i);
138748 #define sqlite3_bind_int64 sqlite3_api->bind_int64
139196 sqlite3_bind_int64,
190882 sqlite3_bind_int64(pCsr->pStmt, 1, pCsr->iPrevId);
199839 sqlite3_bind_int64(pStmt, 1, iDocid);
200012 sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0));
200013 sqlite3_bind_int64(pStmt, 2,
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1533 sqlite3_bind_int64(pStmt, i, v); in dbPrepareAndBind()