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.c18769 const u8 *zArg = (const u8*)a[2]; in vfstraceFileControl() local
18770 if( zArg[0]>='0' && zArg[0]<='9' ){ in vfstraceFileControl()
18810 while( zArg[0] ){ in vfstraceFileControl()
18812 while( zArg[0]!=0 && zArg[0]!='-' && zArg[0]!='+' in vfstraceFileControl()
18813 && !isalpha(zArg[0]) ) zArg++; in vfstraceFileControl()
18814 if( zArg[0]==0 ) break; in vfstraceFileControl()
18815 if( zArg[0]=='-' ){ in vfstraceFileControl()
18817 zArg++; in vfstraceFileControl()
18818 }else if( zArg[0]=='+' ){ in vfstraceFileControl()
18820 zArg++; in vfstraceFileControl()
[all …]
H A Dsqlite3.c123145 char *zArg = 0; local
123154 zArg = sqlite3MPrintf(db, "%Q", z);
123159 zArg = sqlite3MPrintf(db, "%d", iCol);
123167 , zDb, zArg, pTab->zName
123169 sqlite3DbFree(db, zArg);
134856 const unsigned char *zArg = sqlite3_value_text(pValue); local
134857 sqlite3_str_appendf(pStr, bEscape ? "%#Q" : "%Q", zArg);
136950 const char *zArg; local
136954 }else if( (zArg = (const char*)sqlite3_value_text(argv[i]))!=0 ){
136956 zArg, sqlite3_uri_parameter(zFile,zArg));
[all …]