摘要:
Statement statement = connection.createStatement(); final ResultSet resultSet = statement.executeQuery(String sql); 上面两句是普通的查询过程,下面分析下驱动程序是如何进行查询和数据返回 阅读全文
摘要:
一般获取数据库连接的程序 Class.forName("com.mysql.jdbc.Driver"); final Connection connection = (Connection)DriverManager.getConnection("jdbc:mysql://localhost:330 阅读全文