Home
last modified time | relevance | path

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

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h436 #define sqlite3_complete sqlite3_api->complete macro
H A Dsqlite3.h2790 ** The input to [sqlite3_complete()] must be a zero-terminated
2796 SQLITE_API int sqlite3_complete(const char *sql);
H A Dshell.c20294 ** sqlite3_complete() returns false, try to terminate the comment before
20308 if( sqlite3_complete(zNew) ){ in printSchemaLine()
29688 ** The CLI needs a working sqlite3_complete() to work properly. So error
29704 rc = sqlite3_complete(zSql);
29968 if( nSql && QSS_SEMITERM(qss) && sqlite3_complete(zSql) ){ in process_input()
H A Dsqlite3.c3103 ** The input to [sqlite3_complete()] must be a zero-terminated
3109 SQLITE_API int sqlite3_complete(const char *sql);
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2376 isComplete = sqlite3_complete( Tcl_GetStringFromObj(objv[2], 0) ); in DbObjCmd()