美文网首页开源
JDBC连接PostgreSQL

JDBC连接PostgreSQL

作者: 宥_Hugh | 来源:发表于2018-03-24 19:38 被阅读63次

展示连接后查询的效果:


查询MULTIPOLYGON结果 连接流程图

步骤:
(1)安装PostgreSQL数据库(GeoServer和PostGIS安装配置
);
(2)根据安装的PostgreSQL版本下载驱动jar,下载地址:https://jdbc.postgresql.org/download.html

Java版本下载

(3)在MyEclipse中新建Java Project,新建lib文件夹,将下载的jar驱动包拖到文件夹中。


新建lib文件导入.jar文件

(4)将jar驱动包添加到Libraries


配置路径

点击Add Class Folder


添加lib
添加Libraries完成

(5)编写代码测试连接数据库

package DB;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class test {
    public static void main(String[] args) {
        Connection connection=null;
        Statement statement =null;
        try{
            String url="jdbc:postgresql://127.0.0.1:5432/DB";
            String user="postgres";
            String password = "123456789";
            Class.forName("org.postgresql.Driver");
            connection= DriverManager.getConnection(url, user, password);
            System.out.println("是否成功连接pg数据库"+connection);
            String sql="select name from city";
            statement=connection.createStatement();
            ResultSet resultSet=statement.executeQuery(sql);
            while(resultSet.next()){
                String name=resultSet.getString(1);
                System.out.println(name);
            }
        }catch(Exception e){
            throw new RuntimeException(e);
        }finally{
            try{
                statement.close();
            }
            catch(SQLException e){
                e.printStackTrace();
                throw new RuntimeException(e);
            }finally{
                try{
                    connection.close();
                }
                catch(SQLException e){
                    e.printStackTrace();
                    throw new RuntimeException(e);
                }
            }
        }
    }
}

相关文章

网友评论

    本文标题:JDBC连接PostgreSQL

    本文链接:https://www.haomeiwen.com/subject/lhqccftx.html