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

SnowflakeQueryInterface

继承自

QueryInterface → SnowflakeQueryInterface

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

方法摘要

公共方法
public

async removeColumn(tableName: *, columnName: *, options: *): *

一个包装器,修复了 Snowflake 无法从现有表中干净地删除列(如果它们具有外键约束)的问题。

public

async removeConstraint(tableName: *, constraintName: *, options: *): *

public

async upsert(tableName: *, insertValues: *, updateValues: *, where: *, options: *): *

继承摘要

来自类 QueryInterface
public

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

向表中添加新列

public

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

向表中添加约束

public

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

向列中添加索引

public

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

从表中删除多条记录

public

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

向表中插入多条记录

public

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

更新表的多个记录

public

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

更改列定义

public

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

创建数据库

public

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

创建 SQL 函数

public

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

创建模式

public

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

使用给定的属性集创建表

public

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

描述表结构

public

async dropAllSchemas(options: 对象): Promise

删除所有模式

public

async dropAllTables(options: 对象): Promise

从数据库中删除所有表

public

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

删除数据库

public

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

删除 SQL 函数

public

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

删除模式

public

async 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: *, columnName: *, options: *): * 来源

一个包装器,修复了 Snowflake 无法从现有表中干净地删除列(如果它们具有外键约束)的问题。

覆盖

QueryInterface#removeColumn

参数

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

返回值

*

公有 异步 removeConstraint(tableName: *, constraintName: *, options: *): * 来源

从表中删除约束

覆盖

QueryInterface#removeConstraint

参数

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

返回值

*

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

Upsert

覆盖

QueryInterface#upsert

参数

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

返回值

*