📄 ex8_8.txt
字号:
Example 8.8 ReadOnlyRowSet.java: Populating the RowSet
package com.corej2eepatterns.dao.rowset;
// imports
public class ReadOnlyRowSet implements RowSet, Serializable {
. . .
private Object[] dataRows;
. . .
/** this is a read only row set */
public boolean isReadOnly() {
return true;
}
public void setReadOnly(boolean flag) throws SQLException {
throw new SQLException(
揜eadOnlyRowSet: Method not supported
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -