JDBC高级(一)
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
用户评论