Searched refs:zCsr (Results 1 – 2 of 2) sorted by relevance
185328 const char *zCsr = z;185330 while( *zCsr!='=' ){185331 if( *zCsr=='\0' ) return 0;185332 zCsr++;185335 *pnKey = (int)(zCsr-z);185336 zValue = sqlite3_mprintf("%s", &zCsr[1]);185724 char *zCsr; /* Space for holding column names */185985 zCsr = (char *)&p->abNotindexed[nCol];185986 p->zName = zCsr;185987 memcpy(zCsr, argv[2], nName);[all …]
1940 char *zCsr = p->z+p->n; in appendText() local1941 *zCsr++ = quote; in appendText()1943 *zCsr++ = zAppend[i]; in appendText()1944 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()1946 *zCsr++ = quote; in appendText()1947 p->n = (int)(zCsr - p->z); in appendText()1948 *zCsr = '\0'; in appendText()