Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c186944 const char *zCsr = z;
186946 while( *zCsr!='=' ){
186947 if( *zCsr=='\0' ) return 0;
186948 zCsr++;
186951 *pnKey = (int)(zCsr-z);
186952 zValue = sqlite3_mprintf("%s", &zCsr[1]);
187340 char *zCsr; /* Space for holding column names */
187601 zCsr = (char *)&p->abNotindexed[nCol];
187602 p->zName = zCsr;
187603 memcpy(zCsr, argv[2], nName);
[all …]
H A Dshell.c1954 char *zCsr = p->z+p->n; in appendText() local
1955 *zCsr++ = quote; in appendText()
1957 *zCsr++ = zAppend[i]; in appendText()
1958 if( zAppend[i]==quote ) *zCsr++ = quote; in appendText()
1960 *zCsr++ = quote; in appendText()
1961 p->n = (int)(zCsr - p->z); in appendText()
1962 *zCsr = '\0'; in appendText()