Home
last modified time | relevance | path

Searched refs:sqlite3_error_offset (Results 1 – 5 of 5) sorted by relevance

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h681 #define sqlite3_error_offset sqlite3_api->error_offset macro
H A Dsqlite3.h3972 ** <li> sqlite3_error_offset()
3991 ** SQL, the sqlite3_error_offset() interface returns the byte offset
3993 ** sqlite3_error_offset() assumes that the input SQL is UTF8.
3995 ** SQL, then the sqlite3_error_offset() function returns -1.
4016 SQLITE_API int sqlite3_error_offset(sqlite3 *db);
H A Dshell.c21007 || (iOffset = sqlite3_error_offset(db))<0 in shell_error_context()
H A Dsqlite3.c4285 ** <li> sqlite3_error_offset()
4304 ** SQL, the sqlite3_error_offset() interface returns the byte offset
4306 ** sqlite3_error_offset() assumes that the input SQL is UTF8.
4308 ** SQL, then the sqlite3_error_offset() function returns -1.
4329 SQLITE_API int sqlite3_error_offset(sqlite3 *db);
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2765 Tcl_SetObjResult(interp, Tcl_NewIntObj(sqlite3_error_offset(pDb->db))); in DbObjCmd()