com.jchanghong.db.dialect.impl.PostgresqlDialect Maven / Gradle / Ivy
The newest version!
package com.jchanghong.db.dialect.impl;
import com.jchanghong.db.dialect.DialectName;
import com.jchanghong.db.sql.Wrapper;
/**
* Postgree方言
* @author loolly
*
*/
public class PostgresqlDialect extends AnsiSqlDialect{
private static final long serialVersionUID = 3889210427543389642L;
public PostgresqlDialect() {
wrapper = new Wrapper('"');
}
@Override
public DialectName dialectName() {
return DialectName.POSTGREESQL;
}
}