⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pagable.java.svn-base

📁 本项目是基于展示新闻的一款产品。在本系统中用户可以自定义栏目及新闻分类 发布新闻信息
💻 SVN-BASE
字号:
/**
 * 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 + -