1. 首页
  2. 数据库
  3. 其它
  4. JDBC高级(一)

JDBC高级(一)

上传者: 2020-12-31 07:34:33上传 PDF文件 102.64KB 热度 4次
1. Statement 查询SQL数据操作 1.1 Statement查询SQL数据操作 这里需要先准备好一个User类,属性包含int id、 String userName、String password。以及构造方法、操作方法 (1)查询指定的一个数据行,转换成对应的User类对象 // 查询指定的一个数据行,转换成对应的User类对象 @Test public void testSelectOne() { ResultSet resultSet = null; Statement statement = null; Connection connection
用户评论