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 |
向表中添加新列 |
|
public |
async addConstraint(tableName: 字符串, options: 对象): Promise 向表中添加约束 |
|
public |
向列中添加索引 |
|
public |
从表中删除多条记录 |
|
public |
向表中插入多条记录 |
|
public |
更新表的多个记录 |
|
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 |
使用给定的属性集创建表 |
|
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 |
从数据库中删除表 |
|
public |
异步 getForeignKeyReferencesForTable(tableName: 字符串, options: 对象): * 获取表的外部键引用详细信息 |
|
public |
异步 getForeignKeysForTables(tableNames: 字符串[], options: 对象): Promise 返回请求表的全部外键约束 |
|
public |
quoteIdentifier(identifier: 字符串, force: 布尔值): 字符串 通过 "." 分割标识符列表,并为每个部分添加引号 |
|
public |
quoteIdentifiers(identifiers: 字符串): 字符串 通过 "." 分割标识符列表,并为每个部分添加引号。 |
|
public |
异步 removeColumn(tableName: 字符串, attributeName: 字符串, options: 对象): * 从表中删除列 |
|
public |
异步 removeConstraint(tableName: 字符串, constraintName: 字符串, options: 对象): * 从表中删除约束 |
|
public |
从表中删除已存在的索引 |
|
public |
重命名列 |
|
public |
重命名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 无法从现有表中干净地删除列(如果它们具有外键约束)的问题。
参数
名称 | 类型 | 属性 | 描述 |
tableName | * | ||
columnName | * | ||
options | * |
返回值
* |
公有 异步 removeConstraint(tableName: *, constraintName: *, options: *): * 来源
从表中删除约束
参数
名称 | 类型 | 属性 | 描述 |
tableName | * | ||
constraintName | * | ||
options | * |
返回值
* |
公有 异步 upsert(tableName: *, insertValues: *, updateValues: *, where: *, options: *): * 来源
Upsert
参数
名称 | 类型 | 属性 | 描述 |
tableName | * | ||
insertValues | * | ||
updateValues | * | ||
where | * | ||
options | * |
返回值
* |