@naturalcycles/db-lib
Version:
Lowest Common Denominator API to supported Databases
27 lines (26 loc) • 760 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.commonDBFullSupport = exports.CommonDBType = void 0;
var CommonDBType;
(function (CommonDBType) {
CommonDBType["document"] = "document";
CommonDBType["relational"] = "relational";
})(CommonDBType || (exports.CommonDBType = CommonDBType = {}));
exports.commonDBFullSupport = {
queries: true,
dbQueryFilter: true,
dbQueryFilterIn: true,
dbQueryOrder: true,
dbQuerySelectFields: true,
insertSaveMethod: true,
updateSaveMethod: true,
patchByQuery: true,
increment: true,
createTable: true,
tableSchemas: true,
streaming: true,
bufferValues: true,
nullValues: true,
transactions: true,
timeMachine: true,
};