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

📄 querydataset1rowiterator.java

📁 我做的第一个java MIS项目
💻 JAVA
字号:
package client;

import com.borland.dx.dataset.*;

public class QueryDataSet1RowIterator {
    RowIterator rowIterator = new RowIterator();
    public QueryDataSet1RowIterator() {
    }

    void bind(DataSet dataset) throws DataSetException {
        rowIterator.bind(dataset);
    }

    void bind(ReadRow readRow) throws DataSetException {
        rowIterator.bind(readRow);
    }

    void bind(ReadWriteRow readWriteRow) throws DataSetException {
        rowIterator.bind(readWriteRow);
    }

    void bind(RowIterator ri) throws DataSetException {
        rowIterator.bind(ri);
    }

    public void first() throws DataSetException {
        rowIterator.first();
    }

    public void last() throws DataSetException {
        rowIterator.last();
    }

    public void next() throws DataSetException {
        rowIterator.next();
    }

    public void prior() throws DataSetException {
        rowIterator.prior();
    }

    public int getCdid() throws DataSetException {
        return rowIterator.getInt("cdid");
    }

    public void setCdid(int value) throws DataSetException {
        rowIterator.setInt("cdid", value);
    }

    public boolean getCdexist() throws DataSetException {
        return rowIterator.getBoolean("cdexist");
    }

    public void setCdexist(boolean value) throws DataSetException {
        rowIterator.setBoolean("cdexist", value);
    }

    public String getCdname() throws DataSetException {
        return rowIterator.getString("cdname");
    }

    public void setCdname(String value) throws DataSetException {
        rowIterator.setString("cdname", value);
    }

    public String getCdtype() throws DataSetException {
        return rowIterator.getString("cdtype");
    }

    public void setCdtype(String value) throws DataSetException {
        rowIterator.setString("cdtype", value);
    }

    public String getCdmtype() throws DataSetException {
        return rowIterator.getString("cdmtype");
    }

    public void setCdmtype(String value) throws DataSetException {
        rowIterator.setString("cdmtype", value);
    }

    public String getCdactor() throws DataSetException {
        return rowIterator.getString("cdactor");
    }

    public void setCdactor(String value) throws DataSetException {
        rowIterator.setString("cdactor", value);
    }

    public String getCdnotes() throws DataSetException {
        return rowIterator.getString("cdnotes");
    }

    public void setCdnotes(String value) throws DataSetException {
        rowIterator.setString("cdnotes", value);
    }
}

⌨️ 快捷键说明

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