UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

18 lines (16 loc) 808 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OffsetWithoutLimitNotSupportedError = void 0; const TypeORMError_1 = require("./TypeORMError"); /** * Thrown when user tries to build SELECT query using OFFSET without LIMIT applied but database does not support it. */ class OffsetWithoutLimitNotSupportedError extends TypeORMError_1.TypeORMError { constructor() { super(`RDBMS does not support OFFSET without LIMIT in SELECT statements. You must use limit in ` + `conjunction with offset function (or take in conjunction with skip function if you are ` + `using pagination).`); } } exports.OffsetWithoutLimitNotSupportedError = OffsetWithoutLimitNotSupportedError; //# sourceMappingURL=OffsetWithoutLimitNotSupportedError.js.map