feat: dumper data type handling

This commit is contained in:
SPRINX0\prochazka
2025-01-23 15:47:13 +01:00
committed by Nybkox
parent bcf89b1f09
commit 09fa3ce438
6 changed files with 39 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ export interface SqlDumper extends AlterProcessor {
putRaw(s: string);
put(format: string, ...args);
putCmd(format: string, ...args);
putValue(value: string | number | Date);
putValue(value: string | number | Date, dataType?: string);
putCollection<T>(delimiter: string, collection: T[], lambda: (item: T) => void);
transform(type: TransformType, dumpExpr: () => void);
createDatabase(name: string);