Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2147 const char *zArg = Tcl_GetString(objv[i]); in dbQrf()
2150 if( zArg[0]!='-' ){ in dbQrf()
2152 Tcl_AppendResult(pDb->interp, "unknown argument: ", zArg, (char*)0); in dbQrf()
2156 zSql = zArg; in dbQrf()
2158 Tcl_AppendResult(pDb->interp, "option has no argument: ", zArg, (char*)0); in dbQrf()
2161 }else if( strcmp(zArg,"-style")==0 ){ in dbQrf()
2186 }else if( strcmp(zArg,"-esc")==0 ){ in dbQrf()
2199 }else if( strcmp(zArg,"-text")==0 || strcmp(zArg, "-title")==0 ){ in dbQrf()
2214 int k = zArg[2]=='e'; in dbQrf()
2215 rc = Tcl_GetIndexFromObj(pDb->interp, objv[i+1], &azText[k*2], zArg, in dbQrf()
[all …]
/freebsd/contrib/sqlite3/
H A Dshell.c18807 const u8 *zArg = (const u8*)a[2]; in vfstraceFileControl() local
18808 if( zArg[0]>='0' && zArg[0]<='9' ){ in vfstraceFileControl()
18848 while( zArg[0] ){ in vfstraceFileControl()
18850 while( zArg[0]!=0 && zArg[0]!='-' && zArg[0]!='+' in vfstraceFileControl()
18851 && !isalpha(zArg[0]) ) zArg++; in vfstraceFileControl()
18852 if( zArg[0]==0 ) break; in vfstraceFileControl()
18853 if( zArg[0]=='-' ){ in vfstraceFileControl()
18855 zArg++; in vfstraceFileControl()
18856 }else if( zArg[0]=='+' ){ in vfstraceFileControl()
18858 zArg++; in vfstraceFileControl()
[all …]
H A Dsqlite3.c123341 char *zArg = 0; local
123350 zArg = sqlite3MPrintf(db, "%Q", z);
123355 zArg = sqlite3MPrintf(db, "%d", iCol);
123363 , zDb, zArg, pTab->zName
123365 sqlite3DbFree(db, zArg);
135073 const unsigned char *zArg = sqlite3_value_text(pValue); local
135074 sqlite3_str_appendf(pStr, bEscape ? "%#Q" : "%Q", zArg);
137171 const char *zArg; local
137175 }else if( (zArg = (const char*)sqlite3_value_text(argv[i]))!=0 ){
137177 zArg, sqlite3_uri_parameter(zFile,zArg));
[all …]