Home
last modified time | relevance | path

Searched refs:zCsr (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.c189869 const char *zCsr = z;
189871 while( *zCsr!='=' ){
189872 if( *zCsr=='\0' ) return 0;
189873 zCsr++;
189876 *pnKey = (int)(zCsr-z);
189877 zValue = sqlite3_mprintf("%s", &zCsr[1]);
190265 char *zCsr; /* Space for holding column names */
190526 zCsr = (char *)&p->abNotindexed[nCol];
190527 p->zName = zCsr;
190528 memcpy(zCsr, argv[2], nName);
[all …]
H A Dshell.c1506 char *zCsr = p->z+p->n; in appendText() local
1507 *zCsr++ = quote; in appendText()
1509 *zCsr++ = zAppend[i]; in appendText()
1510 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
1512 *zCsr++ = quote; in appendText()
1513 p->n = (int)(zCsr - p->z); in appendText()
1514 *zCsr = '\0'; in appendText()