摘要: JDBC(Java Database connectivity),是连接数据库的一种方式。后面的框架Mybatis和Hibernate等都封装的是JDBC。在JDBC中常用的API有4个:DriverManager、Connection、Statement、ResultSet。 代码演示: 首先要导 阅读全文
posted @ 2018-08-23 20:59 wooyoohoo 阅读(798) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 6 11 12 13 18 19 20 21 22 23 24 25 26 27 28 persons = new ArrayList(); 31 Person p1 = new Person("23","wpp"); 32 Person p2 = new Person("... 阅读全文
posted @ 2018-08-23 14:27 wooyoohoo 阅读(185) 评论(0) 推荐(0) 编辑