sqlreader.index_type.jsl
来自「SQL 类Shell代码生成器 对SQL Server 2005,2008生成」· JSL 代码 · 共 19 行
JSL
19 行
public enum Index_type {
// Hex value is: 00000001
/** @attribute Description("Heap")*/
Heap(1),
// Hex value is: 00000002
/** @attribute Description("Clustered")*/
Clustered(2),
// Hex value is: 00000004
/** @attribute Description("Nonclustered")*/
Nonclustered(4),
// Hex value is: 00000008
/** @attribute Description("XML")*/
XML(8)
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?