Home
last modified time | relevance | path

Searched refs:azArg (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c20499 char **azArg, /* Text of each result column */ in shell_callback() argument
20506 if( azArg==0 ) return 0; in shell_callback()
20514 if( azArg==0 ) break; in shell_callback()
20522 azArg[i] ? azArg[i] : p->nullValue, p->rowSeparator); in shell_callback()
20559 if( azArg==0 ) break; in shell_callback()
20564 const char *zVal = azArg[ aMap[i] ]; in shell_callback()
20582 printSchemaLine(azArg[0], ";\n"); in shell_callback()
20593 if( azArg[0]==0 ) break; in shell_callback()
20594 if( sqlite3_strlike("CREATE VIEW%", azArg[0], 0)==0 in shell_callback()
20595 || sqlite3_strlike("CREATE TRIG%", azArg[0], 0)==0 in shell_callback()
[all …]
H A Dsqlite3.h13350 int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);
H A Dsqlite3.c13663 int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);
18423 char **azArg; /* 0: module 1: schema 2: vtab name 3...: args */ member
123879 pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->u.vtab.azArg[0]);
123900 pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->u.vtab.azArg[0]);
140872 const char *zMod = pTab->u.vtab.azArg[0];
141504 char *azArg[2]; /* Value of the argument and schema */
141639 for(i=0; i<ArraySize(pCsr->azArg); i++){
141640 sqlite3_free(pCsr->azArg[i]);
141641 pCsr->azArg[i] = 0;
141690 assert( j<ArraySize(pCsr->azArg) );
[all …]