ipersistencemanager.java
来自「数据访问器」· Java 代码 · 共 22 行
JAVA
22 行
package jsx.szu.edu.cn.dao;
import java.awt.List;
public interface IPersistenceManager {
List read(String table,
String[] columns,
Row selectionRow,String[] sortColumns) throws DataException;
void insert(String table,
List rows) throws DataException;
void update(String table,
Row selectionRow,
Row updateRow) throws DataException;
void delete(String table,
Row selectionRow
) throws DataException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?