Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dtreeview.c157 char cSep = '('; in sqlite3TreeViewWith() local
160 sqlite3_str_appendf(&x, "%c%s", cSep, pCte->pCols->a[j].zEName); in sqlite3TreeViewWith()
161 cSep = ','; in sqlite3TreeViewWith()
H A Dpragma.c2570 char cSep = '('; in pragmaVtabConnect() local
2579 sqlite3_str_appendf(&acc, "%c\"%s\"", cSep, pragCName[j]); in pragmaVtabConnect()
2580 cSep = ','; in pragmaVtabConnect()
H A Dshell.c.in5514 ** + Use p->cSep as the column separator. The default is ",".
5523 int cSep = p->cColSep; local
5545 if( (c==cSep && pc==cQuote)
5584 while( c!=EOF && c!=cSep && c!=rSep ){
5604 ** + Use p->cSep as the column separator. The default is "\x1F".
5613 int cSep = p->cColSep; local
5621 while( c!=EOF && c!=cSep && c!=rSep ){
/sqlite-3.40.0/ext/rtree/
H A Dgeopoly.c416 char cSep = '\''; in geopolySvgFunc() local
419 sqlite3_str_appendf(x, "%c%g,%g", cSep, GeoX(p,i), GeoY(p,i)); in geopolySvgFunc()
420 cSep = ' '; in geopolySvgFunc()