typeorm
Version:
Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
14 lines • 582 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NamedPlaceholdersNotSupportedError = void 0;
const TypeORMError_1 = require("./TypeORMError");
/**
* Thrown when trying to use named placeholders with an incompatible driver.
*/
class NamedPlaceholdersNotSupportedError extends TypeORMError_1.TypeORMError {
constructor() {
super(`Your driver does not support named placeholders.`);
}
}
exports.NamedPlaceholdersNotSupportedError = NamedPlaceholdersNotSupportedError;
//# sourceMappingURL=NamedPlaceholdersNotSupportedError.js.map