📄 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;
}
public boolean supportsInsertSelectIdentity() {
return false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -