JDBC 程序实例问题
编程实现如下功能:在数据库中建立一个表,表名为student,其结构为学号、姓名、性别、年龄、英语、JavaSE程序设计、初级日语、总分,在表中输入多条记录。
- 学生的总分信息,通过修改总分 = 英语 + JavaSE程序设计+ 初级日语
- 查询所有学生的信息,并显示出来。
- 查询所有不及格成绩的学生信息。
- 插入一条记录。
- 修改性别为男的所有学生的年龄 = 年龄 + 1.
- 删除(4)题目中插入的记录
- 将表中记录按照总分降序输出。
代码实现
package www.yjl;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Scanner;
public class Test1 {
public static void main(String[] args) {
try {
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/hair?useUnicode=true&characterEncoding=utf8","root","123456");
//(1)计算总分
String updateSql = "update student set 总分=英语+JavaSE程序设计+初级日语";
PreparedStatement pst = conn.prepareStatement(updateSql);
int zf = pst.executeUpdate();
if (zf > 0)
{
System.out.println("总分计算成功!");
}
System.out.println("-------------------------");
//查询所有学生的信息,并显示出来
String showAll = "select * from student";
PreparedStatement pst1 = conn.prepareStatement(showAll);
ResultSet rs = pst1.executeQuery();
while (rs.next())
{
for (int i = 1;i <= 9;i++)
{
System.out.print(rs.getString(i)+" ");
}
System.out.println();
}
System.out.println("-------------------------");
//查询不及格成绩的学生信息
String showFild = "select * from student where 英语<60 or JavaSE程序设计<60 or 初级日语 <60";
PreparedStatement pst2 = conn.prepareStatement(showFild);
ResultSet rsshouFild = pst2.executeQuery();
while (rsshouFild.next())
{
for (int i = 1;i <= 9;i++)
{
System.out.print(rsshouFild.getString(i)+" ");
}
System.out.println();
}
System.out.println("-------------------------");
//插入一条数据
System.out.println("Now you will alowed to import a line:");
String insertLine = "insert into student(Id,学号,姓名,性别) values(?,?,?,?)";
//String updateSql1="update student set 学号=?,姓名=? where 性别=?";
PreparedStatement pstInsert=conn.prepareStatement(insertLine);
Scanner sc = new Scanner(System.in);
System.out.println("请输入学生ID:");
String id=sc.next();
System.out.println("请输入学生学号:");
String number=sc.next();
System.out.println("请输入学生姓名:");
String name=sc.next();
System.out.println("请输入学生性别:");
String sex=sc.next();
pstInsert.setString(1, id);
pstInsert.setString(2, number);
pstInsert.setString(3, name);
pstInsert.setString(4, sex);
int y = pstInsert.executeUpdate();
if(y>0)
{
System.out.println("恭喜你插入了一条新的数据!");
}
System.out.println("-------------------------");
//这是你点击输入的时候,光标没有自动跳转到你要放你输入内容的地方,他在的地方可能已经有了内容,所以你输入内容就输入不进去,
//解决办法就是把光标点到你要输入内容的地方,这是eclipse本身的缺陷,目前应该还没有解决办法。
//一直存在输入不进去的bug,这是找到的答案....次奥!!!!搞我半个小时,我还以为代码有问题.....
//修改性别为男的所有学生的年龄=年龄+1
String updateBoyOld = "update student set 年龄=年龄+1 where 性别 ='男'";
PreparedStatement pstupdateBoyOld = conn.prepareStatement(updateBoyOld);
int boyplus = pstupdateBoyOld.executeUpdate();
if (boyplus > 0)
{
System.out.println("年龄加 1 成功!");
}
System.out.println("-------------------------");
//将表中记录按照总分降序输出
String updateSoreDesc = "select * from student order by 总分 desc";
PreparedStatement pstSoreDesc = conn.prepareStatement(updateSoreDesc);
ResultSet rsSoreDesc = pstSoreDesc.executeQuery();
while (rsSoreDesc.next())
{
for (int i = 1;i <= 9;i++)
{
System.out.print(rsSoreDesc.getString(i)+" ");
}
System.out.println();
}
System.out.println("-------------------------");
//删除数据
String deleteSql="delete from student where 学号=?";
PreparedStatement pstDelete=conn.prepareStatement(deleteSql);
pstDelete.setString(1,"1005");
int e = pstDelete.executeUpdate();
if (e>0)
{
System.out.println("删除成功!");
}
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
小结
这个程序是昨晚搞出来的,也算是一个没有界面的小程序了,用的是一个测试类,代码冗长...enmmm...
一百多行代码,最终写完,其中,发现自己还是有好多问题,自己还有好多东西要学习啊。。。现在还是蒟蒻啊....本来是想着昨晚接着贴出来的,有点事情给耽搁了....