?? departmentdaoimple.java
字號:
package com.qiming.jspch20.model.dao.impl;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
import com.qiming.jspch20.model.dao.IDepartmentDAO;
import com.qiming.jspch20.model.utils.DButils;
import com.qiming.jspch20.vo.DepartmentVO;
public class DepartmentDAOImple implements IDepartmentDAO {
public void addDepartmentVO(DepartmentVO depart,DButils dbutils) throws SQLException{
}
public List<DepartmentVO> findDepartmentVO(DButils dbutils) throws SQLException {
dbutils.excuteWithResult("select * from department");
return null;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -