PostgreSQL报错 解决操作符不存在的问题

2021-01-04 11:33:17 IT技术网 互联网
浏览

最近才接触到一个用PostgreSQL的项目,然后在开发的过程中发现了这样的一个问题。

错误: 操作符不存在: character = integer

反正还有很多报错的,原因都是类型的转换问题。在mysql中似乎对类型这个概念不是那么敏感,而在PostgreSql中Integer 、Long、Date、String 等等之间转换都会存在操作符不存在的报错。

所以在使用非实体进行数据传输的时候,例如Map等等就需要手动设置数据类型。

Long orgId = (maps.get("orgId") != null && maps.get("orgId").toString().length() > 0) ? Long.valueOf(maps.get("orgId").toString()) : null;
maps.put("orgId", orgId);

就可以利用maps进行判断后再进行插入修改等操作,Date格式也同理。

补充:PostgreSQL一些简单问题以及解决办法

问题:

org.postgresql.util.PSQLException: Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.

解决办法:

Edit /var/lib/pgsql/data/postgresql.conf file

Change
#listen_addresses = 'localhost'
to
listen_addresses = '*'

问题:

org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host "<host_ip>", user "fkong", database "fkong", SSL off

解决办法:

Edit /var/lib/pgsql/data/pg_hba.conf file
Add below line under "# IPv4 local connections:"
"host all   all   <host_ip>/32   password"

问题:

org.postgresql.util.PSQLException: FATAL: Ident authentication failed for user "fkong"

解决办法:

Edit /var/lib/pgsql/data/pg_hba.conf file
Change
"host all   all   <host_ip>/32   ident"
to
"host all   all   <host_ip>/32   password"

以上为个人经验,希望能给大家一个参考,也希望大家多多支持IT技术网。如有错误或未考虑完全的地方,望不吝赐教。

您可能感兴趣的文章:

  • PostgreSQL基础知识之SQL操作符实践指南
  • 解决postgreSql远程连接数据库超时的问题
  • PostgreSQL 设置允许访问IP的操作
  • navicat无法连接postgreSQL-11的解决方案
  • 解决sqoop从postgresql拉数据,报错TCP/IP连接的问题
  • sqoop读取postgresql数据库表格导入到hdfs中的实现