首页 > 数据库技术 > 详细

java-jdbc

时间:2020-06-07 11:27:00      阅读:56      评论:0      收藏:0      [点我收藏+]

 

 
 
 
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();
                }
            }
        }
    }
?
 

 

java-jdbc

原文:https://www.cnblogs.com/abuduri/p/13059775.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!