Added support for MDB_BOOL, MDB_MONEY, MDB_BYTE, MDB_SDATETIME

This commit is contained in:
brianb
2001-02-17 04:48:34 +00:00
parent fb576534d8
commit ee6eacbe22
6 changed files with 171 additions and 5 deletions

View File

@@ -103,7 +103,8 @@ int opt;
col=g_ptr_array_index(table->columns,j);
if (quote_text &&
(col->col_type==MDB_TEXT ||
col->col_type==MDB_MEMO)) {
col->col_type==MDB_MEMO ||
col->col_type==MDB_SDATETIME)) {
fprintf(stdout,"%s\"%s\"",delimiter,bound_values[j]);
} else {
fprintf(stdout,"%s%s",delimiter,bound_values[j]);