Package com.quickorm.dialect

Examples of com.quickorm.dialect.MySqlDialect


    public void setDatabase(Database database) {
        this.database = database;
        //设置方言
        switch (database) {
            case MYSQL:
                setDialect(new MySqlDialect());
                break;
            case SQL_SERVER:
                setDialect(new SqlServerDialect());
                break;
            default:
View Full Code Here

TOP

Related Classes of com.quickorm.dialect.MySqlDialect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.