文章列表
public int addReview(Review review) {
Connection conn=null; //创建连接对象
PreparedStatement pstmt=null; //创建执行对象
//ResultSet rs=null;
int result=0;
String sql="insert into nrs_review (r_content,r_username,r_revtime,n_id) values(?,?,?,?)";
try {
conn=DBUtil.getConn(); //得到连接
...