All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.espertech.esperio.db.core.DBUtil Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show newest version
/*
 ***************************************************************************************
 *  Copyright (C) 2006 EsperTech, Inc. All rights reserved.                            *
 *  http://www.espertech.com/esper                                                     *
 *  http://www.espertech.com                                                           *
 *  ---------------------------------------------------------------------------------- *
 *  The software in this package is published under the terms of the GPL license       *
 *  a copy of which has been included with this distribution in the license.txt file.  *
 ***************************************************************************************
 */
package com.espertech.esperio.db.core;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.sql.Blob;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Types;

public class DBUtil {
    private final static Logger log = LoggerFactory.getLogger(DBUtil.class);

    /**
     * Returns the object value for a given column and type.
     *
     * @param rs        result set
     * @param index     column index
     * @param valueType value type
     * @return object value
     * @throws java.sql.SQLException if the column could not be read
     */
    public static Object getValue(ResultSet rs, int index, int valueType) throws SQLException {
        if (valueType == Types.INTEGER) {
            return rs.getInt(index);
        } else if (valueType == Types.BIGINT) {
            return rs.getLong(index);
        } else if (valueType == Types.BLOB) {
            Blob blob = rs.getBlob(index);
            return getBlobValue(blob);
        }
        return rs.getObject(index);
    }

    private static byte[] getBlobValue(Blob blob) throws SQLException {
        if (blob == null) {
            return null;
        }

        if (blob.length() > Integer.MAX_VALUE) {
            log.warn("Blob truncated: value larger then Integer.MAX_VALUE bytes:" + blob.length());
            return null;
        }
        int len = (int) blob.length();
        return blob.getBytes(1, len);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy