mysql改为postgresql 语法常见问题

mysql改为postgresql 语法常见问题
springboot引入postgresql ①pom引入依赖 org.postgresql

	mysql改为postgresql 语法常见问题[数据库教程]

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

  postgresql9.3 及以前的版本指定方式

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

  postgresql9.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

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/6540.html

(0)
上一篇 2023-04-07
下一篇 2023-04-07

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注