UNPKG

@sequelize/core

Version:

Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, and IBM i. It features solid transaction support, relations, eager and lazy loading, read replication a

37 lines (36 loc) 889 B
/** * An enum of table hints to be used in mssql for querying with table hints * * @property NOLOCK * @property READUNCOMMITTED * @property UPDLOCK * @property REPEATABLEREAD * @property SERIALIZABLE * @property READCOMMITTED * @property TABLOCK * @property TABLOCKX * @property PAGLOCK * @property ROWLOCK * @property NOWAIT * @property READPAST * @property XLOCK * @property SNAPSHOT * @property NOEXPAND */ export declare enum TableHints { NOLOCK = "NOLOCK", READUNCOMMITTED = "READUNCOMMITTED", UPDLOCK = "UPDLOCK", REPEATABLEREAD = "REPEATABLEREAD", SERIALIZABLE = "SERIALIZABLE", READCOMMITTED = "READCOMMITTED", TABLOCK = "TABLOCK", TABLOCKX = "TABLOCKX", PAGLOCK = "PAGLOCK", ROWLOCK = "ROWLOCK", NOWAIT = "NOWAIT", READPAST = "READPAST", XLOCK = "XLOCK", SNAPSHOT = "SNAPSHOT", NOEXPAND = "NOEXPAND" }