Searched refs:zCsr (Results 1 – 2 of 2) sorted by relevance
194419 const char *zCsr = z; local194421 while( *zCsr!='=' ){194422 if( *zCsr=='\0' ) return 0;194423 zCsr++;194426 *pnKey = (int)(zCsr-z);194427 zValue = sqlite3_mprintf("%s", &zCsr[1]);194815 char *zCsr; /* Space for holding column names */ local195076 zCsr = (char *)&p->abNotindexed[nCol];195077 p->zName = zCsr;195078 memcpy(zCsr, argv[2], nName);[all …]
24494 char *zCsr = p->zTxt+p->n; in appendText() local24495 *zCsr++ = quote; in appendText()24497 *zCsr++ = zAppend[i]; in appendText()24498 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()24500 *zCsr++ = quote; in appendText()24501 p->n = (i64)(zCsr - p->zTxt); in appendText()24502 *zCsr = '\0'; in appendText()