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

    Querying Attributes Where Basics Operators Range Operators Combinations Operators Aliases Operators security JSON PostgreSQL MSSQL JSONB Nested object Nested key Contai...
  • Constraints & Circularities

    Constraints & Circularities Enforcing a foreign key reference without constraints Constraints & Circularities Adding constraints between tables means that tables must be creat...
  • 数据库同步

    数据库同步 数据库同步 当开始一个新的项目时,你还不会有一个数据库结构,并且使用Sequelize你也不需要它. 只需指定你的模型结构,并让库完成其余操作. 目前支持的是创建和删除表: // 创建表: Project . sync () Task . sync () // 强制创建! Project . sync ({ forc...
  • Other Data Types

    Other Data Types Ranges (PostgreSQL only) Special Cases BLOBs ENUMs JSON (SQLite, MySQL, MariaDB and PostgreSQL only) Note for PostgreSQL JSONB (PostgreSQL only) MSSQL Othe...
  • 托管事务(auto-callback)

    托管事务(auto-callback) 抛出错误到回滚 自动将事务传递给所有查询 托管事务(auto-callback) 托管事务自动处理提交或回滚事务.你可以通过将回调传递给 sequelize.transaction 来启动托管事务. 注意回传传递给 transaction 的回调是否是一个 promise 链,并且没有明确地调用t.c...
  • MySQL

    MySQL MySQL In order to get Sequelize working nicely together with MySQL, you'll need to installmysql2@^1.5.2 or higher. Once that's done you can use it like this: const sequ...
  • Read replication

    Read replication Read replication Sequelize supports read replication, i.e. having multiple servers that you can connect to when you want to do a SELECT query. When you do read...
  • Transaction

    Class Transaction TYPES ISOLATION_LEVELS LOCK commit() -> Promise rollback() -> Promise Class Transaction View code The transaction object is used to identify a runn...
  • Promises 和 async/await

    Promises 和 async/await Promises 和 async/await 如上所示,通常普遍使用 .then 调用,Sequelize 普遍使用 Promise. 这意味着,如果你的 Node 版本支持它,你可以对使用 Sequelize 进行的所有异步调用使用 ES2017 async/await 语法. 此外,所有 Seq...
  • Hooks - 钩子

    Hooks - 钩子 操作清单 声明 Hook 移除 Hook 全局 / 通用 Hook Sequelize.options.define (默认 hook) Sequelize.addHook (常驻 hook) 实例 Hook 模型 Hook 关联 关于事务的注意事项 内部事务 Hooks - 钩子 Hook(也称为生命周期...