指南 参考 源代码
public class | 源代码

MSSqlQueryInterface

继承自

QueryInterface → MSSqlQueryInterface

Sequelize 用于与 MSSQL 数据库交互的接口

方法汇总

公共方法
public

异步 removeColumn(tableName: *, attributeName: *, options: *): *

一个包装器,修复了 MSSQL 无法从现有表中干净地删除具有默认约束的列的问题。

public

异步 upsert(tableName: *, insertValues: *, updateValues: *, where: *, options: *): *

继承汇总

从类 QueryInterface 继承
public

异步 addColumn(table: 字符串, key: 字符串, attribute: 对象, options: 对象): Promise

向表中添加新列

public

异步 addConstraint(tableName: 字符串, options: 对象): Promise

向表中添加约束

public

异步 addIndex(tableName: 字符串 | 对象, attributes: 数组, options: 对象, rawTablename: 字符串): Promise

向列中添加索引

public

异步 bulkDelete(tableName: 字符串, where: 对象, options: 对象, model: Model): Promise

从表中删除多条记录

public

异步 bulkInsert(tableName: 字符串, records: 数组, options: 对象, attributes: 对象): Promise

向表中插入多条记录

public

异步 bulkUpdate(tableName: 字符串, values: 对象, identifier: 对象, options: 对象, attributes: 对象): Promise

更新表的多个记录

public

异步 changeColumn(tableName: 字符串, attributeName: 字符串, dataTypeOrOptions: 对象, options: 对象): *

更改列定义

public

异步 createDatabase(database: 字符串, options: 对象): Promise

创建数据库

public

异步 createFunction(functionName: 字符串, params: 数组, returnType: 字符串, language: 字符串, body: 字符串, optionsArray: 数组, options: 对象): Promise

创建 SQL 函数

public

异步 createSchema(schema: 字符串, options: 对象): Promise

创建模式

public

异步 createTable(tableName: 字符串, attributes: 对象, options: 对象, model: Model): Promise

使用给定的属性集创建表

public

异步 describeTable(tableName: 字符串, options: 对象): Promise<对象>

描述表结构

public

异步 dropAllSchemas(options: 对象): Promise

删除所有模式

public

异步 dropAllTables(options: 对象): Promise

从数据库中删除所有表

public

异步 dropDatabase(database: 字符串, options: 对象): Promise

删除数据库

public

异步 dropFunction(functionName: 字符串, params: 数组, options: 对象): Promise

删除 SQL 函数

public

异步 dropSchema(schema: 字符串, options: 对象): Promise

删除模式

public

异步 dropTable(tableName: 字符串, options: 对象): Promise

从数据库中删除表

public

异步 getForeignKeyReferencesForTable(tableName: 字符串, options: 对象): *

获取表的外部键引用详细信息

public

异步 getForeignKeysForTables(tableNames: 字符串[], options: 对象): Promise

返回请求表的全部外键约束

public

通过 "." 分割标识符列表,并为每个部分添加引号

public

通过 "." 分割标识符列表,并为每个部分添加引号。

public

异步 removeColumn(tableName: 字符串, attributeName: 字符串, options: 对象): *

从表中删除列

public

异步 removeConstraint(tableName: 字符串, constraintName: 字符串, options: 对象): *

从表中删除约束

public

异步 removeIndex(tableName: 字符串, indexNameOrAttributes: 字符串 | 字符串[], options: 对象): Promise

从表中删除已存在的索引

public

异步 renameColumn(tableName: 字符串, attrNameBefore: 字符串, attrNameAfter: 字符串, options: 对象): Promise

重命名列

public

异步 renameFunction(oldFunctionName: 字符串, params: 数组, newFunctionName: 字符串, options: 对象): Promise

重命名SQL函数

public

异步 renameTable(before: 字符串, after: 字符串, options: 对象): Promise

重命名表

public

异步 showAllSchemas(options: 对象): Promise<数组>

显示所有模式

public

异步 tableExists(tableName: TableName, options: QueryOptions): Promise<布尔值>

返回一个 Promise,如果表存在于数据库中,则解析为 true,否则解析为 false。

public

异步 upsert(tableName: 字符串, insertValues: 对象, updateValues: 对象, where: 对象, options: 对象): Promise<布尔值, ?数字>

Upsert

公共方法

公有 异步 removeColumn(tableName: *, attributeName: *, options: *): * 来源

一个包装器,修复了 MSSQL 无法从现有表中干净地删除具有默认约束的列的问题。

覆盖

QueryInterface#removeColumn

参数

名称类型属性描述
tableName *
attributeName *
options *

返回值

*

公有 异步 upsert(tableName: *, insertValues: *, updateValues: *, where: *, options: *): * 来源

Upsert

覆盖

QueryInterface#upsert

参数

名称类型属性描述
tableName *
insertValues *
updateValues *
where *
options *

返回值

*