Searched refs:zArg (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 3721 const char *zArg = Tcl_GetString(objv[i]); in DbObjCmd() local 3728 if( strcmp(zArg, "-use-legacy-prepare")==0 && i+1<objc ){ in DbObjCmd() 3740 if( strcmp(zArg, "-last-stmt-ptr")==0 ){ in DbObjCmd() 3748 Tcl_AppendResult(interp, "unknown argument: ", zArg, (char*)0); in DbObjCmd() 3817 const char *zArg; in DbMain() local 3841 zArg = Tcl_GetStringFromObj(objv[1], 0); in DbMain() 3842 if( strcmp(zArg,"-version")==0 ){ in DbMain() 3846 if( strcmp(zArg,"-sourceid")==0 ){ in DbMain() 3850 if( strcmp(zArg,"-has-codec")==0 ){ in DbMain() 3854 if( zArg[0]=='-' ) return sqliteCmdUsage(interp, objv); in DbMain() [all …]
|
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 1414 static sqlite3_int64 integerValue(const char *zArg){ in integerValue() argument 1429 if( zArg[0]=='-' ){ in integerValue() 1431 zArg++; in integerValue() 1432 }else if( zArg[0]=='+' ){ in integerValue() 1433 zArg++; in integerValue() 1435 if( zArg[0]=='0' && zArg[1]=='x' ){ in integerValue() 1437 zArg += 2; in integerValue() 1438 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue() 1440 zArg++; in integerValue() 1443 while( IsDigit(zArg[0]) ){ in integerValue() [all …]
|
| H A D | sqlite3.c | 131519 const unsigned char *zArg = sqlite3_value_text(pValue); 131520 sqlite3_str_appendf(pStr, bEscape ? "%#Q" : "%Q", zArg); 133113 const char *zArg; 133117 }else if( (zArg = (const char*)sqlite3_value_text(argv[i]))!=0 ){ 133119 zArg, sqlite3_uri_parameter(zFile,zArg)); 157912 static void addModuleArgument(Parse *pParse, Table *pTable, char *zArg){ 157924 sqlite3DbFree(db, zArg); 157927 azModuleArg[i] = zArg; 192902 const char *zArg = 0; 192904 zArg = (const char *)sqlite3_value_text(apVal[1]); [all …]
|