返回顶部
首页 > 资讯 > 精选 >Java数据库连接PreparedStatement的使用详解
  • 644
分享到

Java数据库连接PreparedStatement的使用详解

javapreparedstatementava 2023-05-31 07:05:44 644人浏览 独家记忆
摘要

本文介绍了Java数据库连接PreparedStatement的使用详解,分享给大家,具体如下:首先了解Statement和PreparedStatement的区别:由此可见,一般使用PreparedStatement。操作数据库SU(Co

本文介绍了Java数据库连接PreparedStatement的使用详解,分享给大家,具体如下:

首先了解Statement和PreparedStatement的区别:

Java数据库连接PreparedStatement的使用详解

由此可见,一般使用PreparedStatement。

操作数据库SU(Course表),其中Course属性有Cno,Cname,Cpno,Ccredit。

public class Demo_2 {  public static void main(String[] args) {    PreparedStatement ps=null;    ResultSet rs=null;    Connection ct=null;    try {      //1.加载驱动      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");      //2.得到连接      ct=DriverManager.getConnection("jdbc:odbc:mytest");      //3.创建PreparedStatement      ps=ct.prepareStatement("select * from Course where Cno=? and Cpno=?");            ps.setString(1,"3");       //给第一个问号赋值      ps.setInt(2,1);      rs=ps.executeQuery();            while(rs.next()){        String Cno=rs.getString(1);        String Cname=rs.getString(2);        int Cpno=rs.getInt(3);        int Ccredit=rs.getInt(4);        System.out.println(Cno+" "+Cname+" "+Cpno+" "+Ccredit);      }              //使用 PreparedStatement添加一条记录//      ps=ct.prepareStatement("insert into Course values(?,?,?,?)");//      ps.setString(1, "8");//      ps.setString(2, "c++");//      ps.setInt(3, 3);//      ps.setInt(4, 2);//      //执行//      int i=ps.executeUpdate();//      if(i==1){//        System.out.print("添加成功");//      }else{//        System.out.print("添加不成功");//      }          } catch (Exception e) {      e.printStackTrace();    }finally{        try {          if(rs!=null){            rs.close();          }          if(ps!=null){             ps.close();          }          if(ct!=null){            ct.close();          }          } catch (Exception e) {          e.printStackTrace();        }    }    }}

--结束END--

本文标题: Java数据库连接PreparedStatement的使用详解

本文链接: https://lsjlt.com/news/224205.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作