Lines Matching defs:xSql
12459 ** output, the callback function passed as the third argument (xSql) is
12463 ** the second. If the xSql callback returns any value other than SQLITE_OK,
12480 int (*xSql)(void*, const char*),
12810 int (*xSql)(void*,const char*); /* Pointer to SQL callback function */
13489 if( p->errCode==SQLITE_OK && p->xSql ){
13490 int res = p->xSql(p->pSqlCtx, zSql);
13905 int bSql = p->xSql ? 1 : 0;
14058 if( p->xSql==0 ){
15297 int (*xSql)(void*, const char*),/* SQL callback for _recover_init_sql() */
15319 pRet->xSql = xSql;
15346 int (*xSql)(void*, const char*),
15349 return recoverInit(db, zDb, 0, xSql, pSqlCtx);