@iarayan/ch-orm
Version:
A Developer-First ClickHouse ORM with Powerful CLI Tools
35 lines • 814 B
JavaScript
/**
* Result format for query execution
*/
export var ResultFormat;
(function (ResultFormat) {
/**
* JSON format with column names
*/
ResultFormat["JSON"] = "JSON";
/**
* JSON compact format (arrays of values)
*/
ResultFormat["JSONCompact"] = "JSONCompact";
/**
* JSON each row format
*/
ResultFormat["JSONEachRow"] = "JSONEachRow";
/**
* Tab-separated values
*/
ResultFormat["TSV"] = "TSV";
/**
* Tab-separated values with names
*/
ResultFormat["TSVWithNames"] = "TSVWithNames";
/**
* CSV format
*/
ResultFormat["CSV"] = "CSV";
/**
* CSV format with names
*/
ResultFormat["CSVWithNames"] = "CSVWithNames";
})(ResultFormat || (ResultFormat = {}));
//# sourceMappingURL=connection.js.map