程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 使用PreparedStatement執行SQL語句時占位符(?)的用法,preparedstatement

使用PreparedStatement執行SQL語句時占位符(?)的用法,preparedstatement

編輯:JAVA綜合教程

使用PreparedStatement執行SQL語句時占位符(?)的用法,preparedstatement


1.Student數據庫表

ID  name gender      

 

 

 

 

 

2.Java代碼

public static void main(String[] args) {
int _id=1;
String _name="張三";
String _gender="男";
Connection con=null;
PreparedStatement ps=null;

try {
//加載驅動
Class.forName("com.mysql.jdbc.Driver");
//使用驅動創建連接
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/mysql","root","111111");
//定義sql語句
String sql="insert into hehe values(?,?,?)";
//創建執行命令對象
ps= con.prepareStatement(sql);
//設置參數
ps.setInt(1, 1);
ps.setString(2,_name);
ps.setString(3, _gender);

//執行命令並接受結果
int result=ps.executeUpdate();
System.out.println(result);

} catch (ClassNotFoundException e) {

e.printStackTrace();
} catch (SQLException e) {

e.printStackTrace();
}finally{
try {
if(null!=ps)
ps.close();
if(null!=con)
con.close();
} catch (SQLException e) {

e.printStackTrace();
}
}

}

}

3.得到結果

ID name gender 1 張三 男

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved