SQL——PostgreSQL Driver

PostgreSQL Driver

        依赖说明:一个 JDBC 和 R2DBC 驱动程序,它允许 Java 程序使用标准的、独立于数据库的 Java 代码连接到 PostgreSLQ 数据库

        PostgreSQL是由 PostgreSQL 社区全球志愿者开发团队开发/维护的 对象-关系型数据库管理系统(Object-Relational DataBase Management System).


参考:

(更多参考自行搜索,资源比较多)

PostgreSQL 入门

postgreSQL安装

PostgreSQL入门篇


POM

<!--PostgresQL Driver-->
<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
    <scope>runtime</scope>
</dependency>

XXXX


版权声明:本文为mt521原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。