怎么储存数据至mysql 怎么把数据存到数据库( 二 )


String sql = "insert into article values(null,?,?,?,?,now(),0)";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setInt(1,id);
pstmt.setInt(2,rootid);
pstmt.setString(3,title);
pstmt.setString(4,cont);
pstmt.executeUpdate();
st.executeUpdate("update article set isleaf = 1 where id = " + id);
conn.commit();
conn.setAutoCommit(true);
st.close();
pstmt.close();
conn.close();
%
html
head
meta http-equiv="Content-Type" content="text/html; charset=gbk"
titleInsert title here/title
/head
body
%response.sendRedirect("ShowArticleTree.jsp"); %
/body
/html
当然最好的方法还是应该用jsp + JavaBean方式 。
关于怎么储存数据至mysql和怎么把数据存到数据库的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息 , 记得收藏关注本站 。

推荐阅读