@iarayan/ch-orm
Version:
A Developer-First ClickHouse ORM with Powerful CLI Tools
38 lines • 938 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ResultFormat = void 0;
/**
* Result format for query execution
*/
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 || (exports.ResultFormat = ResultFormat = {}));
//# sourceMappingURL=connection.js.map