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

📄 ipersistencemanager.java

📁 数据访问器
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -