querydataset1rowiterator.java
来自「里面有电子书店管理系统」· Java 代码 · 共 58 行
JAVA
58 行
package enterpriseemployeeadministrate;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 boolean next() throws DataSetException { return rowIterator.next(); } public boolean prior() throws DataSetException { return rowIterator.prior(); } public int getUserID() throws DataSetException { return rowIterator.getInt("user_ID"); } public void setUserID(int value) throws DataSetException { rowIterator.setInt("user_ID", value); } public String getUserName() throws DataSetException { return rowIterator.getString("user_name"); } public void setUserName(String value) throws DataSetException { rowIterator.setString("user_name", value); } public String getUserPassword() throws DataSetException { return rowIterator.getString("user_password"); } public void setUserPassword(String value) throws DataSetException { rowIterator.setString("user_password", value); } public int getUserType() throws DataSetException { return rowIterator.getInt("user_type"); } public void setUserType(int value) throws DataSetException { rowIterator.setInt("user_type", value); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?