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.c3666 const char *zArg = Tcl_GetString(objv[i]); in DbObjCmd() local
3673 if( strcmp(zArg, "-use-legacy-prepare")==0 && i+1<objc ){ in DbObjCmd()
3685 if( strcmp(zArg, "-last-stmt-ptr")==0 ){ in DbObjCmd()
3693 Tcl_AppendResult(interp, "unknown argument: ", zArg, (char*)0); in DbObjCmd()
3762 const char *zArg; in DbMain() local
3786 zArg = Tcl_GetStringFromObj(objv[1], 0); in DbMain()
3787 if( strcmp(zArg,"-version")==0 ){ in DbMain()
3791 if( strcmp(zArg,"-sourceid")==0 ){ in DbMain()
3795 if( strcmp(zArg,"-has-codec")==0 ){ in DbMain()
3799 if( zArg[0]=='-' ) return sqliteCmdUsage(interp, objv); in DbMain()
[all …]
/freebsd/contrib/sqlite3/
H A Dshell.c1862 static sqlite3_int64 integerValue(const char *zArg){ in integerValue() argument
1877 if( zArg[0]=='-' ){ in integerValue()
1879 zArg++; in integerValue()
1880 }else if( zArg[0]=='+' ){ in integerValue()
1881 zArg++; in integerValue()
1883 if( zArg[0]=='0' && zArg[1]=='x' ){ in integerValue()
1885 zArg += 2; in integerValue()
1886 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
1888 zArg++; in integerValue()
1891 while( IsDigit(zArg[0]) ){ in integerValue()
[all …]
H A Dsqlite3.c129788 const unsigned char *zArg = sqlite3_value_text(pValue);
129789 sqlite3_str_appendf(pStr, "%Q", zArg);
155751 static void addModuleArgument(Parse *pParse, Table *pTable, char *zArg){
155763 sqlite3DbFree(db, zArg);
155766 azModuleArg[i] = zArg;
189972 const char *zArg = 0;
189974 zArg = (const char *)sqlite3_value_text(apVal[1]);
189976 sqlite3Fts3Matchinfo(pContext, pCsr, zArg);
195416 const char *zArg, /* Tokenizer name */
195421 char *z = (char *)zArg;
[all …]