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

📄 studentdao.java

📁 掌握 JDBC 驱动程序的加载方法和JDBC-ODBC桥URL的形式; 掌握使用JDBC连接数据库的步骤; 掌握使用JDBC发送SQL语句的基本步骤; 掌握使用JDBC处理SQL查询结果集
💻 JAVA
字号:
package cn.edu.csu.oo.gui.project.dao.studentdao;

import java.util.Vector;

import cn.edu.csu.oo.gui.project.dao.common.DbException;
import cn.edu.csu.oo.gui.project.vo.StudentVo;

public interface StudentDao {
  public boolean registStudent(StudentVo value) throws DbException;
  public Vector findMajor();
  public Vector getStudentInfoByStuId(int stuId);
  public Vector getStudentByMajor(String stuMajor);
  public Vector getStudentByName(String stuName);
  public Vector getStudentInfo();
  public boolean updateStudentInfo(StudentVo value);
  public boolean deleteStudentByStuId(int studentId);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -