|
|
|
@ -1601,11 +1601,11 @@ public abstract class Dialect implements ConversionContext {
|
|
|
|
|
* Build an instance of a {@link SQLExceptionConversionDelegate} for |
|
|
|
|
* interpreting dialect-specific error or SQLState codes. |
|
|
|
|
* <p/> |
|
|
|
|
* When {@link #buildSQLExceptionConverter} returns null, the default |
|
|
|
|
* When {@link #buildSQLExceptionConverter} returns null, the default |
|
|
|
|
* {@link SQLExceptionConverter} is used to interpret SQLState and |
|
|
|
|
* error codes. If this method is overridden to return a non-null value, |
|
|
|
|
* the default {@link SQLExceptionConverter} will use the returned |
|
|
|
|
* {@link SQLExceptionConversionDelegate} in addition to the following |
|
|
|
|
* {@link SQLExceptionConversionDelegate} in addition to the following |
|
|
|
|
* standard delegates: |
|
|
|
|
* <ol> |
|
|
|
|
* <li>a "static" delegate based on the JDBC 4 defined SQLException hierarchy;</li> |
|
|
|
@ -2783,4 +2783,12 @@ public abstract class Dialect implements ConversionContext {
|
|
|
|
|
public boolean supportsNationalizedTypes() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取主键sql字符串 |
|
|
|
|
* |
|
|
|
|
* @param columnList 主键列集合 |
|
|
|
|
* @return int |
|
|
|
|
*/ |
|
|
|
|
public String getPrimaryKeyString(List<Column> columnList) { return "primary key";} |
|
|
|
|
} |
|
|
|
|