Package data_objects

Examples of data_objects.RubyType


     * @param scale
     * @return
     */
    @Override
    public RubyType jdbcTypeToRubyType(int type, int precision, int scale) {
        RubyType primitiveType;
        switch (type) {
        case OracleTypes.DATE:
            primitiveType = RubyType.TIME;
            break;
        case OracleTypes.TIMESTAMP:
View Full Code Here

TOP

Related Classes of data_objects.RubyType

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.