文件名称:bbs系统可留言
文件大小:659B
文件格式:JAVA
更新时间:2015-06-06 07:58:28
bbs系统可留言
bss系统管理的片段
package bbs.xzit.dbc;
import java.sql.*;
import java.util.Iterator;
import java.util.LinkedHashMap;
public class DatabaseUtil {
private DatabaseConnection dbc;
public DatabaseUtil(){
dbc = new DatabaseConnection();
}
// DML DDL ---insert update delete
//insert into table(f1,f2...) values(?,?...?)
public int executeUpdate(String sql,Object[] param) throws Exception {
Connection connect = dbc.getConn();
int num = 0;
PreparedStatement pstmt = null;
try {
pstmt = connect.prepareStatement(sql);
for(int i=0;i