jdbc连接数据库

一、添加jar包支持

    方式1、maven添加    pom.xml中dependencies节点中添加dependency节点

        通过官网:http://mvnrepository.com/,或者:https://search.maven.org/(找到mysql数据库,找到相应版本)


方式二:官网下载支持包

       添加到项目web-app下   web--INF下建立lib文件夹,放入lib,右击添加

二、连接数据库

        1、添加驱动

                Class.forName("com.mysql.jdbc.Driver");

        2、获取连接线程

                DriverManager.getConnection("jdbc:mysql://localhost:3306/数据库名",“root”,“root”);

三、执行查询语句

1、获取sql语句执行对象线程statement

        Statement statement = connection.createStatement();    

2、执行sql语句

        ResultSet rs = statement.executeQuery(sql语句);

四、关闭

你可能感兴趣的:(jdbc连接数据库)