資源簡介
這個壓縮包包含了所有章節(jié)的代碼,及最后一章的項目代碼,屬于原創(chuàng)
代碼片段和文件信息
package?JianDa3;
import?java.sql.*;
import?org.apache.log4j.Logger;
?
public?class?InsertStu?{
private?static?Logger?logger=Logger.getLogger(InsertStu.class.getName());
public?static?void?main(String[]?args)?{
Connection?conn=null;
PreparedStatement?pstmt?=null;
Statement?stmt=null;
// ResultSet?rs=null;
//1、加載驅(qū)動
try?{
Class.forName(“com.mysql.jdbc.Driver“);
}?catch?(Exception?e)?{
????????????logger.error(e);
}
?
String?name[]=new?String[]{“是的““非法““嗯嗯“};
try?{
for?(int?i?=?0;?i? //2、建立連接
conn=DriverManager.getConnection(“jdbc:mysql://localhost:3306/myschool““root““218218“);
//3、插入狗狗信息到數(shù)據(jù)庫
pstmt=conn.prepareStatement(“INSERT?INTO?‘stu‘“+“(‘name‘)?VALUES(?)“);
?pstmt.setString(1?name[i]);
pstmt.execute();
}
logger.error(“成功插入學(xué)生信息“);
?
?
}?catch?(SQLException?e)?{
logger.error(e);
}finally{
try?{
if(null!=conn){
conn.close();
}
if(null!=pstmt){
pstmt.close();
}
if(null!=stmt){
stmt.close();
}
}?catch?(SQLException?e)?{
????????????????logger.error(e);
}
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-06-17?15:59??作業(yè)\
?????目錄???????????0??2019-05-18?16:12??作業(yè)\.me
?????文件???????????0??2019-05-18?16:12??作業(yè)\.me
?????文件??????195080??2019-07-01?16:06??作業(yè)\.me
?????目錄???????????0??2019-05-18?16:12??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-05-25?13:17??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-05-18?16:12??作業(yè)\.me
?????文件?????????828??2019-07-01?16:06??作業(yè)\.me
?????文件???????16652??2019-07-01?16:06??作業(yè)\.me
?????目錄???????????0??2019-05-18?16:27??作業(yè)\.me
?????文件???????????0??2019-05-18?16:27??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-06-13?15:10??作業(yè)\.me
?????目錄???????????0??2019-06-10?20:30??作業(yè)\.me
?????目錄???????????0??2019-06-06?13:56??作業(yè)\.me
?????文件????????1820??2019-05-23?17:06??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-06-06?16:11??作業(yè)\.me
?????文件???????10365??2019-06-03?10:30??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:06??作業(yè)\.me
?????文件????????1089??2019-06-03?10:25??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:06??作業(yè)\.me
?????文件?????????363??2019-06-03?10:20??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
?????目錄???????????0??2019-07-01?16:12??作業(yè)\.me
............此處省略1282個文件信息
評論
共有 條評論