📄 querydataset1rowiterator.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -