Home
last modified time | relevance | path

Searched refs:zSep (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvacuum.c111 const char *zSep = "("; in vacuumCallback2() local
120 appendText(&p->s2, zSep, 1); in vacuumCallback2()
121 zSep = ","; in vacuumCallback2()
H A Dbuild.c831 char *zSep, *zSep2, *zEnd; in createTableStmt() local
838 zSep = ""; in createTableStmt()
842 zSep = "\n "; in createTableStmt()
854 strcpy(&zStmt[k], zSep); in createTableStmt()
856 zSep = zSep2; in createTableStmt()
H A Dvdbe.c915 char *zSep; in sqliteVdbeExec() local
920 zSep = pOp->p3; in sqliteVdbeExec()
921 if( zSep==0 ) zSep = ""; in sqliteVdbeExec()
922 nSep = strlen(zSep); in sqliteVdbeExec()
952 memcpy(&zNew[j], zSep, nSep); in sqliteVdbeExec()
/illumos-gate/usr/src/cmd/sqlite/
H A Dshell.c398 char *zSep = i>0 ? ",": ""; in callback() local
400 fprintf(p->out,"%sNULL",zSep); in callback()
402 fprintf(p->out,"%s%s",zSep, azArg[i]); in callback()
404 if( zSep[0] ) fprintf(p->out,"%s",zSep); in callback()