Postgres服务器未响应nodejs请求

编程入门 行业动态 更新时间:2024-10-08 04:28:58

Postgres<a href=https://www.elefans.com/category/jswz/34/1771423.html style=服务器未响应nodejs请求"/>

Postgres服务器未响应nodejs请求

我可以从pgAdmin4访问远程postgres数据库,也可以使用Mac从nodejs访问。现在,我正在使用相同的代码来访问Windows中的数据库。我的连接代码如下:

const { Client } = require('pg'); //Importing the Postgres package
const hosts= require('../hosts'); //Using the file containig all hosts 
const connectionData = { //Begin creating the connection settings object
   host: hosts.DBHost, //DB host   
   port: hosts.DBPort, //DB hosts port
   database: hosts.DB, //DB
   user: hosts.DBUser, //DB user
   password: hosts.DBPassword, //DB user password
 } 

我的测试如下:

var client = new Client(connectionData); //New client instance using the above connection settings
client.connect(); //Open the connection to the database()  
sql = "select * from myTable";
client.query(sql) 
  .then(response => {
    console.log ({"data": response}); //This isn't shown 
  })
  .catch(err => { 
    console.log({"error": err}); //This isn't shown neither 
  })

没有错误,没有异常,数据库服务器没有响应!

为什么服务器没有响应?

回答如下:

我怀疑您有与此other post中相同的问题。由于不是100%重复,因此我将再次发布:

[pg模块和NodeJS 14中有一个known issue。

建议的解决方案是确保已安装pg>=8.0.3

这可以通过更新依赖项中的pg来完成。

还请确保任何其他依赖于pg模块的库也都是最新的,并且具有最新的pg版本。

如果由于某种原因无法实现-使用节点12也可以。

更多推荐

Postgres服务器未响应nodejs请求

本文发布于:2024-05-07 05:46:38,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1754587.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:服务器   Postgres   nodejs

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!