码迷,mamicode.com
首页 > 数据库 > 详细

mysql改为postgresql 语法常见问题

时间:2021-01-29 12:21:36      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:cal   key   opera   href   连接   dep   post   图片   png   

springboot引入postgresql 

①pom引入依赖
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1212</version>
</dependency>

②yml文件
spring:
datasource:
url: jdbc:postgresql://192.168.10.223:5866/highgo(数据库名称)?useSSL=false&currentSchema=pipe_network
name: dev
username: highgo
password: abcd=1234
# 使用druid数据源
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: org.postgresql.Driver

常见问题

1.org.postgresql.util.PSQLException: ERROR: relation "auth_user" does not exist

  postgresql-> 默认连接使用的是highgo数据库的public 模式

  jdbc:postgresql://localhost:5432/highgo

  postgresql-9.3 及以前的版本指定方式

  spring.datasource.url=jdbc:postgresql://localhost:5432/highgo?searchpath=newschema

  postgresql-9.4及以后的版本指定方式

  spring.datasource.url=jdbc:postgresql://localhost:5432/highgo?currentSchema=newschema

技术图片 

 

  资料来源:https://blog.csdn.net/qq_32719215/article/details/104943498

 

mysql改为postgresql 语法常见问题

标签:cal   key   opera   href   连接   dep   post   图片   png   

原文地址:https://www.cnblogs.com/xiaokangk/p/14343460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!