?? sybaseanywheredialect.java
字號:
package org.hibernate.dialect;/** * SQL Dialect for Sybase Anywhere * extending Sybase (Enterprise) Dialect * (Tested on ASA 8.x) * @author ? */public class SybaseAnywhereDialect extends SybaseDialect { /** * Sybase Anywhere syntax would require a "DEFAULT" for each column specified, * but I suppose Hibernate use this syntax only with tables with just 1 column */ public String getNoColumnsInsertString() { return "values (default)"; } /** * ASA does not require to drop constraint before dropping tables, and DROP statement * syntax used by Hibernate to drop constraint is not compatible with ASA, so disable it */ public boolean dropConstraints() { return false; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -