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

📄 datalisthandler.java

📁 以前写的通用数据库接口
💻 JAVA
字号:
package util.database.datalist;/** * DataListHandler * * 通用的接口,用于操作DataList对象。 * @author Michael Zeng * @version 1.0 September 20, 2002 */public interface DataListHandler{    /**     * 的到查询结果的一个子集     *     * @param startIndex 子集的起始位置     * @param count 子集的个数     * @return Datalist 返回一个子集     * @throws Exception     */    public DataList getListChunk(int startIndex, int count) throws Exception;    /**     * 取得整个查询结果的大小,功能类似于java.util.List.size()     *     * @return size 查询结果的大小     * @throws Exception     */    public int size() throws Exception;    /**     * 检查子集的前面是否还有查询结果     *     * @return boolean true表示前面还有查询结果     */    public boolean hasPrevious();    /**     * 检查子集的后面是否还有查询结果     *     * @return boolean true表示后面还有查询结果     * @throws Exception     */    public boolean hasNext() throws Exception;    /**     * 关闭对象     * @throws Exception     */    public void close() throws Exception;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -