?? pagable.java
字號:
/**
* Copyright: Copyright (c) 2004 Handson
* Description: ???????
* Title: Pagable.java
* @author Administrator
* Create Time: ????10:05:30
* @Version:1.0
*/
package cn.handson.model.service.dao.page;
import java.sql.*;
import java.math.*;
import javax.sql.*;
public interface Pagable {
/**
* The executeQuery method exeutes the query statement,and return ResultSet
* object that Generated by the query.
* @return ResultSet object that generated by the SQL_SELECT
* @throws SQLException if any database exception occurs.
*/
public RowSet executeQuery() throws SQLException;
/**
* Executes the query SQL statement and return the RowSet object that contains
* the records.The RowSet object can be used without database connection
* opened.
* @return RowSet object that contains the record
* @throws SQLException if any database exception occurs.
*/
public RowSet getPagedRowSet() throws SQLException;
/**
* Sets the value of the designated parameter using the given object.
* @param index the first parameter is 1, the second is 2, ...
* @param value the object containing the input parameter value
*/
public PageInfo getPageInfo();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -