HomeSort by: relevance | last modified time | path
    Searched refs:zSql (Results 1 - 4 of 4) sorted by relevancy

  /src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c 184 int nSql; /* chars in zSql[] */
185 const char *zSql; /* Text of the SQL statement */
579 Tcl_Free((char *)pStmt->zSql);
722 static void DbTraceHandler(void *cd, const char *zSql){
728 Tcl_DStringAppendElement(&str, zSql);
754 char *zSql = (char *)xd;
761 Tcl_NewStringObj(zSql, -1));
817 static void DbProfileHandler(void *cd, const char *zSql, sqlite_uint64 tm){
825 Tcl_DStringAppendElement(&str, zSql);
1364 const char *zSql, /* SQL to compile *
    [all...]
  /src/external/public-domain/sqlite/dist/
shell.c 3334 static const char *zSql =
3344 rc = sqlite3_prepare_v2(p->db, zSql, -1, &pExplain, 0);
5086 const char *zSql = (const char*)sqlite3_value_text(argv[0]);
5106 if( zSql==0 ) return;
5108 while( zSql[0] ){
5109 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zSql);
5112 zSql, sqlite3_errmsg(db));
5521 const char *zSql = (const char*)sqlite3_value_text(argv[0]);
5532 if( zSql==0 ) return
    [all...]
sqlite3.h 3190 const char *zSql, /* SQL to be evaluated */
4513 ** The second argument, "zSql", is the statement to be compiled, encoded
4519 ** ^If the nByte argument is negative, then zSql is read up to the
4521 ** number of bytes read from zSql. When nByte is positive, zSql is read
4533 ** past the end of the first SQL statement in zSql. These routines only
4534 ** compile the first statement in zSql, so *pzTail is left pointing to
4595 const char *zSql, /* SQL statement, UTF-8 encoded */
4596 int nByte, /* Maximum length of zSql in bytes. */
4598 const char **pzTail /* OUT: Pointer to unused portion of zSql */
    [all...]
sqlite3.c 3511 const char *zSql, /* SQL to be evaluated */
4834 ** The second argument, "zSql", is the statement to be compiled, encoded
4840 ** ^If the nByte argument is negative, then zSql is read up to the
4842 ** number of bytes read from zSql. When nByte is positive, zSql is read
4854 ** past the end of the first SQL statement in zSql. These routines only
4855 ** compile the first statement in zSql, so *pzTail is left pointing to
4916 const char *zSql, /* SQL statement, UTF-8 encoded */
4917 int nByte, /* Maximum length of zSql in bytes. */
4919 const char **pzTail /* OUT: Pointer to unused portion of zSql */
    [all...]

Completed in 119 milliseconds