Package org.jpox.store.rdbms.columninfo

Examples of org.jpox.store.rdbms.columninfo.MySQLColumnInfo


    public ColumnInfo newColumnInfo(ResultSet rs)
    {
        if (this.driverMajorVersion <= 3)
        {
            // driver 3.1.13 has some issues with BLOB, CLOB
            return new MySQLColumnInfo(rs);
        }

        //while driver 5.x does not
        return super.newColumnInfo(rs);
    }
View Full Code Here

TOP

Related Classes of org.jpox.store.rdbms.columninfo.MySQLColumnInfo

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.