Lines Matching refs:separator
1165 char colSeparator[20]; /* Column separator character for several modes */
1166 char rowSeparator[20]; /* Row separator character for MODE_Ascii */
1167 char colSepPrior[20]; /* Saved column separator */
1168 char rowSepPrior[20]; /* Saved row separator */
1263 #define MODE_List 2 /* One record per line with a separator */
1801 ** the separator, which may or may not be a comma. p->nullValue is
1802 ** the null value. Strings are quoted if necessary. The separator
2134 ** Print a markdown or table-style row separator using ascii-art
3265 ** Draw a horizontal separator for a MODE_Box table.
4537 ".separator COL ?ROW? Change the column and row separators",
5484 int cColSep; /* The column separator character. (Usually ",") */
5485 int cRowSep; /* The row separator character. (Usually "\n") */
5509 ** with the option of having a separator other than ",".
5514 ** + Use p->cSep as the column separator. The default is ",".
5515 ** + Use p->rSep as the row separator. The default is "\n".
5604 ** + Use p->cSep as the column separator. The default is "\x1F".
5605 ** + Use p->rSep as the row separator. The default is "\x1E".
8452 ** the column and row separator characters from the output mode. */
8456 "Error: non-null column separator required for import\n");
8468 "Error: non-null row separator required for import\n");
8474 /* When importing CSV (only), if the row separator is set to the
8475 ** default output row separator, change it to the default input
8476 ** row separator. This avoids having to maintain different input
8512 utf8_printf(p->out, "Column separator ");
8514 utf8_printf(p->out, ", row separator ");
10020 if( c=='s' && cli_strncmp(azArg[0], "separator", n)==0 ){
10022 raw_printf(stderr, "Usage: .separator COL ?ROW?\n");
11339 " -newline SEP set output row separator. Default: '\\n'\n"
11347 " -separator SEP set output column separator. Default: '|'\n"
11599 if( cli_strcmp(z,"-separator")==0
11827 }else if( cli_strcmp(z,"-separator")==0 ){