mysql改为postgresql 语法常见问题
springboot引入postgresql
①pom引入依赖
org.postgresql
postgresql
9.4.1212
②yml文件
spring:
datasource:
url: jdbc:postgresql://192.168.10.223:5866/highgo(数据库名称)?useSSL=false¤tSchema=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 语法常见问题
原文地址:https://www.cnblogs.com/xiaokangk/p/14343460.html
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341