Searched refs:zValue (Results 1 – 11 of 11) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | test_tclvar.c | 431 const char *zValue = (const char*)sqlite3_value_text(argv[4]); in tclvarUpdate() local 438 if( zValue ){ in tclvarUpdate() 439 Tcl_SetVar(pTab->interp, zName, zValue, TCL_GLOBAL_ONLY); in tclvarUpdate() 451 const char *zValue = (const char*)sqlite3_value_text(argv[4]); in tclvarUpdate() local 453 if( strcmp(zOldName, zNewName)!=0 || zValue==0 ){ in tclvarUpdate() 456 if( zValue!=0 ){ in tclvarUpdate() 457 Tcl_SetVar(pTab->interp, zNewName, zValue, TCL_GLOBAL_ONLY); in tclvarUpdate()
|
| H A D | os_win.c | 1918 const char *zValue /* New value for directory being set or reset */ in sqlite3_win32_set_directory8() argument 1938 if( zValue && zValue[0] ){ in sqlite3_win32_set_directory8() 1939 zCopy = sqlite3_mprintf("%s", zValue); in sqlite3_win32_set_directory8() 1962 const void *zValue /* New value for directory being set or reset */ in sqlite3_win32_set_directory16() argument 1966 if( zValue ){ in sqlite3_win32_set_directory16() 1967 zUtf8 = sqlite3_win32_unicode_to_utf8(zValue); in sqlite3_win32_set_directory16() 1984 void *zValue /* New value for directory being set or reset */ in sqlite3_win32_set_directory() argument 1986 return sqlite3_win32_set_directory16(type, zValue); in sqlite3_win32_set_directory()
|
| H A D | pragma.c | 199 const char *zValue /* Value to be returned */ in returnSingleText() argument 201 if( zValue ){ in returnSingleText() 202 sqlite3VdbeLoadString(v, 1, (const char*)zValue); in returnSingleText()
|
| H A D | sqlite.h.in | 6259 ** zValue, depending on the value of the type parameter. The zValue parameter 6274 void *zValue /* New value for directory being set or reset */ 6276 int sqlite3_win32_set_directory8(unsigned long type, const char *zValue); 6277 int sqlite3_win32_set_directory16(unsigned long type, const void *zValue);
|
| H A D | shell.c.in | 9319 const char *zValue = azArg[3]; local 9323 "VALUES(%Q,%s);", zKey, zValue); 9333 "VALUES(%Q,%Q);", zKey, zValue);
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | csv.c | 400 const char *zValue; in csv_string_parameter() local 401 zValue = csv_parameter(zParam,(int)strlen(zParam),zArg); in csv_string_parameter() 402 if( zValue==0 ) return 0; in csv_string_parameter() 408 *pzVal = sqlite3_mprintf("%s", zValue); in csv_string_parameter() 519 const char *zValue; in csvtabConnect() local 534 if( (zValue = csv_parameter("testflags",9,z))!=0 ){ in csvtabConnect() 535 tstFlags = (unsigned int)atoi(zValue); in csvtabConnect() 538 if( (zValue = csv_parameter("columns",7,z))!=0 ){ in csvtabConnect() 543 nCol = atoi(zValue); in csvtabConnect()
|
| H A D | vtablog.c | 109 const char *zValue; in vtablog_string_parameter() local 110 zValue = vtablog_parameter(zParam,(int)strlen(zParam),zArg); in vtablog_string_parameter() 111 if( zValue==0 ) return 0; in vtablog_string_parameter() 116 *pzVal = sqlite3_mprintf("%s", zValue); in vtablog_string_parameter()
|
| H A D | fossildelta.c | 159 static const signed char zValue[] = { in deltaGetInt() local 173 while( (c = zValue[0x7f&*(z++)])>=0 ){ in deltaGetInt()
|
| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest5.c | 208 const char *zValue, /* Nul-terminated value to write */ in dbWriteOperation() argument 226 testWriteStr(pDb, zKey, zValue, pRc); in dbWriteOperation()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3.c | 792 char *zValue; in fts3IsSpecialColumn() local 801 zValue = sqlite3_mprintf("%s", &zCsr[1]); in fts3IsSpecialColumn() 802 if( zValue ){ in fts3IsSpecialColumn() 803 sqlite3Fts3Dequote(zValue); in fts3IsSpecialColumn() 805 *pzValue = zValue; in fts3IsSpecialColumn()
|
| /sqlite-3.40.0/ext/rbu/ |
| H A D | sqlite3rbu.c | 488 static const signed char zValue[] = { in rbuDeltaGetInt() local 502 while( (c = zValue[0x7f&*(z++)])>=0 ){ in rbuDeltaGetInt()
|