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

📄 studenttable.java

📁 这是一个可以在手机客户端运行的选课系统 这个是客户端
💻 JAVA
字号:
/*
 * 创建日期 2005-3-11
 *
 * 更改所生成文件模板为
 * 窗口 > 首选项 > Java > 代码生成 > 代码和注释
 */
package jdbc;
import java.sql.*;

/**
 * @author Owner
 *
 * 更改所生成类型注释的模板为
 * 窗口 > 首选项 > Java > 代码生成 > 代码和注释
 */
public class StudentTable 
{
	private String command=null;
	private Statement statement=null;
	
	public StudentTable(Statement statement)
	{
		this.statement=statement;
	}
	
	public int insert(String studentID,String password) throws SQLException
	{
		command="INSERT INTO StudentTable VALUES ('"+studentID+"','"+password+"',0";
		return statement.executeUpdate(command);
	}
	
	public int delete(String studentID) throws SQLException
	{
		command="DELETE FROM StudentTable WHERE StudentID='"+studentID+"'";
		return statement.executeUpdate(command);
	}
	
	public int updatePassword(String studentID,String password) throws SQLException
	{
		command="UPDATE StudentTable SET Password='"+password+"'"+" WHERE StudentID='"+studentID+"'";
		return statement.executeUpdate(command);
	}
	
	public boolean updateCourseChosen(String studentID,int courseChosen) throws SQLException
	{
		command="UPDATE StudentTable SET CourseChosen="+courseChosen+""+" WHERE StudentID='"+studentID+"'";
		statement.executeUpdate(command);
		return true;
	}
	
	public ResultSet select(String studentID) throws SQLException
	{
		if(studentID==null)
			command="SELECT * FROM STUDENTTABLE";
		else
			command="SELECT * FROM STUDENTTABLE WHERE StudentID='"+studentID+"'";
		return statement.executeQuery(command);
	}
}

⌨️ 快捷键说明

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