书栈网 · BookStack 本次搜索耗时 0.034 秒,为您找到 464 个相关结果.
  • PostgreSQL

    PostgreSQL PostgreSQL 对于 PostgreSQL,需要两个库,pg@^7.0.0 和 pg-hstore . 你只需要定义方言: const sequelize = new Sequelize ( 'database' , 'username' , 'password' , { // pos...
  • Connection Pool

    Connection Pool Connection Pool If you’re connecting to the database from a single process, you should create only one Sequelize instance. Sequelize will set up a connection po...
  • 扩展模型

    扩展模型 索引 扩展模型 Sequelize 模型是ES6类. 你可以轻松添加自定义实例或类级别的方法. class User extends Model { // 添加一个类级别的方法 static classLevelMethod () { return 'foo' ; } ...
  • Dialect-Specific Things - 方言特定事项

    Dialect-Specific Things - 方言特定事项 基础连接器库 MySQL MariaDB SQLite PostgreSQL MSSQL MSSQL 域账户 数据类型: TIMESTAMP WITHOUT TIME ZONE - 仅限 PostgreSQL 数据类型: ARRAY(ENUM) - 仅限 PostgreSQL ...
  • Query Interface - 查询接口

    Query Interface - 查询接口 获取查询界面 创建一个表 向表添加列 更改列的数据类型 删除列 更改和删除 SQLite 中的列 其它 Query Interface - 查询接口 Sequelize 实例使用一种称为 查询接口 的东西来以与方言无关的方式与数据库进行通信. 你在本手册中学到的大多数方法都是通过查询接口...
  • Other Data Types - 其他数据类型

    Other Data Types - 其他数据类型 范围 (仅限 PostgreSQL) 特别案例 BLOB ENUM JSON (仅限 SQLite, MySQL, MariaDB 和 PostgreSQL) PostgreSQL 的注意事项 JSONB (仅限 PostgreSQL) MSSQL 其他 Other Data T...
  • 全局 / 通用 Hook

    全局 / 通用 Hook 默认 Hook (Sequelize.options.define) 常驻 Hook (Sequelize.addHook) 连接 Hook 全局 / 通用 Hook 全局 hook 是所有模型的 hook. 他们可以定义你想要的所有模型的行为,并且对插件特别有用. 它们可以用两种方式来定义,它们的语义略有不同: ...
  • Hooks

    Hooks Available hooks Hooks firing order Declaring Hooks Removing hooks Global / universal hooks Default Hooks (on Sequelize constructor options) Permanent Hooks (with sequeli...
  • Associations

    Associations Defining the Sequelize associations Creating the standard relationships One-To-One relationships Philosophy Goal Implementation Options onDelete and onUpdate C...
  • TypeScript

    TypeScript Installation Usage Usage of sequelize.define TypeScript Since v5, Sequelize provides its own TypeScript definitions. Please note that only TS >= 3.1 is supported....