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.h410 #define sqlite3_bind_int64 sqlite3_api->bind_int64 macro
H A Dsqlite3.h5012 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
H A Dshell.c20037 sqlite3_bind_int64(pStmt, 2, pgno); in dbdataLoadPage()
21423 sqlite3_bind_int64(pStmt, 1, pgno); in recoverGetPage()
22222 sqlite3_bind_int64(pLaf->pFindRoot, 1, iPg); in recoverLostAndFoundFindRoot()
22251 sqlite3_bind_int64(pPageData, 1, iPage); in recoverLostAndFoundOnePage()
22258 sqlite3_bind_int64(pInsert, 1, iRoot); /* rootpgno */ in recoverLostAndFoundOnePage()
22259 sqlite3_bind_int64(pInsert, 2, iPage); /* pgno */ in recoverLostAndFoundOnePage()
22262 sqlite3_bind_int64(pInsert, 4, iRowid); /* id */ in recoverLostAndFoundOnePage()
22472 sqlite3_bind_int64(pSel, 1, iRoot); in recoverWriteDataStep()
22511 sqlite3_bind_int64(pInsert, iBind, p1->iRowid); in recoverWriteDataStep()
22518 sqlite3_bind_int64(pInsert, pTab->iRowidBind, p1->iRowid); in recoverWriteDataStep()
[all …]
H A Dsqlite3.c5333 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
95313 return sqlite3_bind_int64(p, i, (i64)iValue);
95315 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){ function
95394 rc = sqlite3_bind_int64(pStmt, i, pValue->u.i);
142643 #define sqlite3_bind_int64 sqlite3_api->bind_int64 macro
143099 sqlite3_bind_int64,
195471 sqlite3_bind_int64(pCsr->pStmt, 1, pCsr->iPrevId);
204445 sqlite3_bind_int64(pStmt, 1, iDocid);
204618 sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0));
204619 sqlite3_bind_int64(pStmt, 2,
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1548 sqlite3_bind_int64(pStmt, i, v); in dbPrepareAndBind()