Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libsqlite/src/
H A Dvacuum.c114 const char *zSep = "("; in vacuumCallback2() local
123 appendText(&p->s2, zSep, 1); in vacuumCallback2()
124 zSep = ","; in vacuumCallback2()
H A Dbuild.c834 char *zSep, *zSep2, *zEnd; in createTableStmt() local
841 zSep = ""; in createTableStmt()
845 zSep = "\n "; in createTableStmt()
857 strcpy(&zStmt[k], zSep); in createTableStmt()
859 zSep = zSep2; in createTableStmt()
H A Dvdbe.c917 char *zSep; in sqliteVdbeExec() local
922 zSep = pOp->p3; in sqliteVdbeExec()
923 if( zSep==0 ) zSep = ""; in sqliteVdbeExec()
924 nSep = strlen(zSep); in sqliteVdbeExec()
954 memcpy(&zNew[j], zSep, nSep); in sqliteVdbeExec()
/titanic_50/usr/src/cmd/sqlite/
H A Dshell.c400 char *zSep = i>0 ? ",": ""; in callback() local
402 fprintf(p->out,"%sNULL",zSep); in callback()
404 fprintf(p->out,"%s%s",zSep, azArg[i]); in callback()
406 if( zSep[0] ) fprintf(p->out,"%s",zSep); in callback()