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 張三 男