HomeSort by relevance Sort by last modified time
    Searched refs:zSql (Results 1 - 7 of 7) sorted by null

  /external/sqlite/dist/
shell.c 448 char *zSql = 0;
462 /* Set zSql to the SQL to pull the list of tables from the
468 zSql = sqlite3_mprintf(
474 zSql = sqlite3_mprintf(
479 if( !zSql ){
484 rc = sqlite3_prepare(pVtab->db, zSql, -1, &pCur->pTableList, 0);
485 sqlite3_free(zSql);
489 /* Set zSql to the SQL to the table_info pragma for the table currently
493 zSql = sqlite3_mprintf(pVtab->pType->zPragma,
498 if( !zSql ){
    [all...]
sqlite3.h.orig     [all...]
sqlite3.h     [all...]
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3.h 636 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
637 ** sqlite3_exec(db, zSQL, 0, 0, 0);
638 ** sqlite3_free(zSQL);
665 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
666 ** sqlite3_exec(db, zSQL, 0, 0, 0);
667 ** sqlite3_free(zSQL);
670 ** The code above will render a correct SQL statement in the zSQL
    [all...]
  /external/webkit/WebCore/platform/sql/
SQLiteStatement.cpp 39 static inline int sqlite3_prepare16_v2(sqlite3* db, const void* zSql, int nBytes, sqlite3_stmt** ppStmt, const void** pzTail)
41 return sqlite3_prepare16(db, zSql, nBytes, ppStmt, pzTail);

Completed in 48 milliseconds