Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c26511 int cSep = (u8)p->cColSep; in csv_read_one_field() local
26533 if( (c==cSep && pc==cQuote) in csv_read_one_field()
26572 while( c!=EOF && c!=cSep && c!=rSep ){ in csv_read_one_field()
26601 int cSep = (u8)p->cColSep; in ascii_read_one_field() local
26609 while( c!=EOF && c!=cSep && c!=rSep ){ in ascii_read_one_field()
H A Dsqlite3.c33310 char cSep = '('; in sqlite3TreeViewWith() local
33313 sqlite3_str_appendf(&x, "%c%s", cSep, pCte->pCols->a[j].zEName); in sqlite3TreeViewWith()
33314 cSep = ','; in sqlite3TreeViewWith()
143464 char cSep = '(';
143473 sqlite3_str_appendf(&acc, "%c\"%s\"", cSep, pragCName[j]);
143474 cSep = ',';
218175 char cSep = '\'';
218178 sqlite3_str_appendf(x, "%c%g,%g", cSep, GeoX(p,i), GeoY(p,i));
218179 cSep = ' ';