摘要:
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... 阅读全文