com.mysql.cj.api.mysqla.result.ResultsetRows Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mysql-connector-java
Show all versions of mysql-connector-java
JDBC Type 4 driver for MySQL
/*
Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/J is licensed under the terms of the GPLv2
, like most MySQL Connectors.
There are special exceptions to the terms and conditions of the GPLv2 as it is applied to
this software, see the FOSS License Exception
.
This program is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation; version 2
of the License.
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 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.api.mysqla.result;
import com.mysql.cj.api.result.Row;
import com.mysql.cj.api.result.RowList;
import com.mysql.cj.core.Messages;
import com.mysql.cj.core.exceptions.CJOperationNotSupportedException;
import com.mysql.cj.core.exceptions.ExceptionFactory;
/**
* This interface abstracts away how row data is accessed by the result set. It is meant to allow a static implementation (Current version), and a streaming
* one. It extends the {@link RowList} functionality by providing row positioning, updatability and ownership.
*/
public interface ResultsetRows extends RowList, ProtocolEntity {
/**
* Adds a row.
*
* @param row
* the row to add
*/
default void addRow(Row row) {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Moves to after last.
*
*/
default void afterLast() {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Moves to before first.
*
*/
default void beforeFirst() {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Moves to before last.
*
*/
default void beforeLast() {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* We're done.
*
*/
default void close() {
}
/**
* Returns the result set that 'owns' this RowData
*/
ResultsetRowsOwner getOwner();
/**
* Returns true if we got the last element.
*
* @return true if after last row
*/
boolean isAfterLast();
/**
* Returns if iteration has not occured yet.
*
* @return true if before first row
*/
boolean isBeforeFirst();
/**
* Returns true if the result set is dynamic.
*
* This means that move back and move forward won't work because we do not
* hold on to the records.
*
* @return true if this result set is streaming from the server
*/
default boolean isDynamic() {
return true;
}
/**
* Has no records.
*
* @return true if no records
*/
default boolean isEmpty() {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Are we on the first row of the result set?
*
* @return true if on first row
*/
default boolean isFirst() {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Are we on the last row of the result set?
*
* @return true if on last row
*/
default boolean isLast() {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Moves the current position relative 'rows' from the current position.
*
* @param rows
* the relative number of rows to move
*/
default void moveRowRelative(int rows) {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Moves the current position in the result set to the given row number.
*
* @param rowNumber
* row to move to
*/
default void setCurrentRow(int rowNumber) {
throw ExceptionFactory.createException(CJOperationNotSupportedException.class, Messages.getString("OperationNotSupportedException.0"));
}
/**
* Set the result set that 'owns' this RowData
*
* @param rs
* the result set that 'owns' this RowData
*/
void setOwner(ResultsetRowsOwner rs);
/**
* Did this result set have no rows?
*/
boolean wasEmpty();
/**
* Sometimes the driver doesn't have metadata until after
* the statement has the result set in-hand (because it's cached),
* so it can call this to set it after the fact.
*
* @param columnDefinition
* field-level metadata for the result set
*/
void setMetadata(ColumnDefinition columnDefinition);
ColumnDefinition getMetadata();
}