摘要: public class Demo4 { /* create table test1 ( id int primary key auto_increment, name varchar(20) ); */ @Test public void test1() { Connection conn = null; PreparedStatement st = null; ResultSet rs = null; try { conn = JdbcUtils.getConnection(); String sql = "insert into test1(name... 阅读全文
posted @ 2013-12-15 11:28 今晚打酱油_ 阅读(289) 评论(0) 推荐(0) 编辑