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

com.mysql.cj.jdbc.result.ResultSetInternalMethods Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2007, 2024, Oracle and/or its affiliates.
 *
 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by
 * the Free Software Foundation.
 *
 * This program is designed to work with certain software that is licensed under separate terms, as designated in a particular file or component or in
 * included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the
 * separately licensed software that they have either included with the program or referenced in the documentation.
 *
 * Without limiting anything contained in the foregoing, this file, which is part of MySQL Connector/J, is also subject to the Universal FOSS Exception,
 * version 1.0, a copy of which can be found at http://oss.oracle.com/licenses/universal-foss-exception.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details.
 *
 * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */

package com.mysql.cj.jdbc.result;

import java.math.BigInteger;
import java.sql.SQLException;
import java.sql.Types;

import com.mysql.cj.jdbc.CloseOption;
import com.mysql.cj.jdbc.JdbcPreparedStatement;
import com.mysql.cj.jdbc.JdbcStatement;
import com.mysql.cj.protocol.Resultset;
import com.mysql.cj.protocol.ResultsetRowsOwner;

/**
 * This interface is intended to be used by implementors of statement interceptors so that implementors can create static or dynamic (via
 * java.lang.reflect.Proxy) proxy instances of ResultSets. It consists of methods outside of java.sql.Result that are used internally by other classes in the
 * driver.
 *
 * This interface, although public is not designed to be consumed publicly other than for the statement interceptor use case.
 */
public interface ResultSetInternalMethods extends java.sql.ResultSet, ResultsetRowsOwner, Resultset {

    /**
     * Functions like ResultSet.getObject(), but using the given SQL type
     * (as registered during CallableStatement.registerOutParameter()).
     *
     * @param columnIndex
     *            1-based column index
     * @param desiredSqlType
     *            desired column type, one of {@link Types}
     * @return object
     * @throws SQLException
     *             if an error occurs
     */
    Object getObjectStoredProc(int columnIndex, int desiredSqlType) throws SQLException;

    /**
     * Functions like ResultSet.getObject(), but using the given SQL type
     * (as registered during CallableStatement.registerOutParameter()).
     *
     * @param i
     *            1-based column index
     * @param map
     *            map
     * @param desiredSqlType
     *            desired column type, one of {@link Types}
     * @return object
     * @throws SQLException
     *             if an error occurs
     */
    Object getObjectStoredProc(int i, java.util.Map map, int desiredSqlType) throws SQLException;

    /**
     * Functions like ResultSet.getObject(), but using the given SQL type
     * (as registered during CallableStatement.registerOutParameter()).
     *
     * @param columnName
     *            column name
     * @param desiredSqlType
     *            desired column type, one of {@link Types}
     * @return object
     * @throws SQLException
     *             if an error occurs
     */
    Object getObjectStoredProc(String columnName, int desiredSqlType) throws SQLException;

    /**
     * Functions like ResultSet.getObject(), but using the given SQL type
     * (as registered during CallableStatement.registerOutParameter()).
     *
     * @param colName
     *            column name
     * @param map
     *            map
     * @param desiredSqlType
     *            desired column type, one of {@link Types}
     * @return object
     * @throws SQLException
     *             if an error occurs
     */
    Object getObjectStoredProc(String colName, java.util.Map map, int desiredSqlType) throws SQLException;

    /**
     * Close this ResultSet and release resources.
     *
     * @param options
     *            options indicating how the close was initiated and/or what should be performed during the close
     * @throws SQLException
     *             if an error occurs
     */
    void doClose(CloseOption... options) throws SQLException;

    /**
     * Sets the first character of the query that was issued to create
     * this result set. The character should be upper-cased.
     *
     * @param firstCharUpperCase
     *            character
     */
    void setFirstCharOfQuery(char firstCharUpperCase);

    /**
     * Sets the statement that "owns" this result set (usually used when the
     * result set should internally "belong" to one statement, but is created
     * by another.
     *
     * @param owningStatement
     *            the statement this result set will belong to
     */
    void setOwningStatement(JdbcStatement owningStatement);

    /**
     * Returns the first character of the query that was issued to create this
     * result set, upper-cased.
     *
     * @return character
     */
    char getFirstCharOfQuery();

    void setStatementUsedForFetchingRows(JdbcPreparedStatement stmt);

    /**
     * @param wrapperStatement
     *            The wrapperStatement to set.
     */
    void setWrapperStatement(java.sql.Statement wrapperStatement);

    void initializeWithMetadata() throws SQLException;

    void populateCachedMetaData(CachedResultSetMetaData cachedMetaData) throws SQLException;

    BigInteger getBigInteger(int columnIndex) throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy