Home
last modified time | relevance | path

Searched refs:sqlite_error (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hdb/
H A Dhdb-sqlite.c485 int sqlite_error; in hdb_sqlite_fetch_kvno() local
512 sqlite_error = hdb_sqlite_step(context, hsdb->db, fetch); in hdb_sqlite_fetch_kvno()
513 if (sqlite_error != SQLITE_ROW) { in hdb_sqlite_fetch_kvno()
514 if(sqlite_error == SQLITE_DONE) { in hdb_sqlite_fetch_kvno()
521 sqlite_error); in hdb_sqlite_fetch_kvno()
851 int sqlite_error; in hdb_sqlite_nextkey() local
856 sqlite_error = hdb_sqlite_step(context, hsdb->db, hsdb->get_all_entries); in hdb_sqlite_nextkey()
857 if(sqlite_error == SQLITE_ROW) { in hdb_sqlite_nextkey()
864 else if(sqlite_error == SQLITE_DONE) { in hdb_sqlite_nextkey()
/netbsd-src/lib/lua/sqlite/
H A Dsqlite.c46 sqlite_error(lua_State *L, const char *fmt, ...) in sqlite_error() function
223 sqlite_error(L, "unsupported data type %s", in stmt_bind()