数据库方言适配demo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
550 B

package com.tptj.demo.hg.dialect.creator;
import com.fr.data.core.db.dialect.HSQLDialect;
import com.fr.data.core.db.dialect.base.DialectKeyConstants;
/**
* @author 秃破天际
* @version 10.0
* Created by 秃破天际 on 2021-04-30
**/
public class DemoHSQLDialect extends HSQLDialect {
public DemoHSQLDialect(){
putExecutor( DialectKeyConstants.EXECUTE_QUERY_KEY, new DemoDialectExecuteQueryParameter() );
putExecutor( DialectKeyConstants.FETCH_COLUMN_INFORMATION_KEY, new DemoFetchColumnInformationExecutor() );
}
}