研發過程當中,把內容過程經常使用的內容段備份一次,下邊內容段是關於java jdbc使用PreparedStatement執行mysql存儲過程的內容,應該對碼農們有一些用途。
private static void doStatistics(PublicSentimentLite psl) throws SQLException,
InstantiationException, IllegalAccessException, ClassNotFoundException {
Connection con = null;
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
con = DriverManager.getConnection(ConfigLoader.getConnString(),
ConfigLoader.getDatabaseUser(), ConfigLoader.getDatabasePassword());
String sql = "CALL proc_nstatistics_update_by_ps(?,?,?,?,?)";
PreparedStatement pstmt = con.prepareStatement(sql);
pstmt.setString(0, psl.getCategoryCode());
pstmt.setDate(1, new java.sql.Date(psl.getPublishTime().getTime()));
pstmt.setInt(2, psl.getAttribute());
pstmt.setString(3, psl.getMediaType());
} finally {
if (con != null) {
con.close();
}
}
} 複製代碼