java-jdbc

 

<style></style>      
xxxxxxxxxx
   
public static void main(String[] args) {
        Connection connection = null;
        PreparedStatement preparedStatement = null;
        ResultSet resultSet=null;
        try{
            Class.forName("com.mysql.jdbc.Driver");
            connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf-8","root","123456");
            String sql = "select * from user where username = ?";
            preparedStatement=connection.prepareStatement(sql);
   
            preparedStatement.setString(1,"Tom");
            resultSet=preparedStatement.executeQuery();
            while(resultSet.next()){
                System.out.println(resultSet.getString("id")+""+resultSet.getString("username"));
            }
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            if(resultSet!=null){
                try {
                    resultSet.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
        }
    }
   

 

上一篇:hadoop安装文档


下一篇:shiro权限验证(个人看视频记录的,自己使用,大家参考有不懂可留言)