博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用JDBC查询学生成绩单
阅读量:5743 次
发布时间:2019-06-18

本文共 2068 字,大约阅读时间需要 6 分钟。

hot3.png

Collection conn = null ;PreparedStatement st = null ;ResultSet rs = null ;try{    Class.forname(driverClassName) ;    conn = DriverManager.getConnection(url,username,password) ;    ps = conn.prepareStatement("select score.* from score,student where score.stuid = student.id and student.name=?") ;    ps.setString(1,studentName) ;    Result rs = ps.executeQuery() ;    while(rs.next()){        system.out.println(rs.getInt("subject")+rs.getFloat("score")) ;    }    catch(Exception e){        e.printStackTrace() ;    }    finally{        if(rs!=null) {rs.close()}        if(ps!=null) {ps.close()}        if(conn!=null) {conn.close}    }}

或者是

import java.sql.* ;public class Select{    //定义数据库驱动程序    public static final String driver = "com.mysql.jdbc.Driver" ;    //定义数据库连接    public static final String url = "jdbc:mysql://localhost:3306/user" ;    //定义数据库名称    public static final String username = "root"  ;    //定义数据库密码    pulic static final String password = "123" ;    Collection conn = null ;    PreparedStatement ps = null ;    ResultSet rs = null ;    try{        Class.forName(driver) ;        conn = DriverManager.getConnection(url,username,password) ;        ps = conn.getPrepareStatement("select score.* from score,student where score.id = student.id and student.name=null") ;        ResultSet rs = ps.executeQuery() ;        while(rs.next()){            System.out.println(rs.getInt("subject")+rs.getFloat("score"))        }     catch(Exception e){         e.printStackTract() ;     }     finally{         if(rs!=null){             try{                 rs.close();             }catch(Exception e){                 e.printStackTrace() ;             }         }         if(ps!=null){             try{                 ps.close();             }catch(Exception e){                 e.printStackTrace() ;             }         }         if(conn!=null){             try{                 conn.close() ;             }catch(Exception e){                 e.printStackTrace() ;             }         }     }    }    }

转载于:https://my.oschina.net/bugkiller/blog/661417

你可能感兴趣的文章
Windows Phone 7 隔离存储空间资源管理器
查看>>
Microsoft Excel 2000/2003修复工具
查看>>
apache安装报错undefined reference ssl
查看>>
关于爱情只有一句忠告
查看>>
CentOS 7下安装部署Oracle11g图文教程
查看>>
F#初学笔记06
查看>>
实战:将企业域名解析委派给企业DNS服务器
查看>>
在Lync 2013环境部署Office Web Apps
查看>>
微软大会Ignite,你准备好了么?
查看>>
读书笔记-高标管事 低调管人
查看>>
Master带给世界的思考:是“失控”还是进化
查看>>
用户和开发者不满苹果iCloud问题多多
查看>>
java.lang.UnsatisfiedLinkError:no dll in java.library.path终极解决之道
查看>>
我的工具:文本转音频文件
查看>>
【许晓笛】从零开始运行EOS系统
查看>>
【跃迁之路】【460天】程序员高效学习方法论探索系列(实验阶段217-2018.05.11)...
查看>>
C++入门读物推荐
查看>>
TiDB 源码阅读系列文章(七)基于规则的优化
查看>>
面试中会遇到的正则题
查看>>
Spring之旅第八站:Spring MVC Spittr舞台的搭建、基本的控制器、请求的输入、表单验证、测试(重点)...
查看>>