Examples of HSQLTypeInfo


Examples of org.jpox.store.rdbms.typeinfo.HSQLTypeInfo

    public HSQLAdapter(DatabaseMetaData metadata)
    {
        super(metadata);

        // Add on any missing JDBC types
        TypeInfo ti = new HSQLTypeInfo("LONGVARCHAR",
            (short)Types.CLOB,
            2147483647,
            "'",
            "'",
            null,
            1,
            true,
            (short)3,
            false,
            false,
            false,
            "LONGVARCHAR",
            (short)0,
            (short)0,
            0);
        addTypeInfo((short)Types.CLOB, ti, true);

        ti = new HSQLTypeInfo("LONGVARBINARY",
            (short)Types.BLOB,
            2147483647,
            "'",
            "'",
            null,
View Full Code Here

Examples of org.jpox.store.rdbms.typeinfo.HSQLTypeInfo

     * @param rs The ResultSet from DatabaseMetaData.getTypeInfo().
     * @return A TypeInfo object.
     */
    public TypeInfo newTypeInfo(ResultSet rs)
    {
        return new HSQLTypeInfo(rs);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.