gpt4 book ai didi

node.js - Firebird - getaddrinfo ENOTFOUND

转载 作者:搜寻专家 更新时间:2023-11-01 00:17:02 28 4
gpt4 key购买 nike

我是 firebird 数据库的新手。

我已经创建了一个数据库“a”和一个表“STUDENT”。

我正在尝试使用这个 npm 包连接到数据库 https://www.npmjs.com/package/node-firebird

以下是我连接到数据库并获取数据的代码。

    var Firebird = require('node-firebird');
var options = {};
options.host = '127.0.0.1:c:\a.fdb';
options.port = 3050;
options.database = 'a';
options.user = 'SYSDBA';
options.password = 'sa123';
options.role = null; // default
options.pageSize = 4096; // default when creating database

app.get('/', function(request, response) {
Firebird.attach(options, function(err, db) {
if (err)
console.log(err);//her i get error
db.query('SELECT * FROM student', function(err, result) {
console.log(result);
db.detach();
});

});
});

我正在使用 flameRobin。以下是我的数据库属性

enter image description here

我在 Node 控制台中收到以下错误。

{ [Error: getaddrinfo ENOTFOUND 127.0.0.1:c:a.fdb 127.0.0.1:c:a.fdb:3050]
code: 'ENOTFOUND',
errno: 'ENOTFOUND',
syscall: 'getaddrinfo',
hostname: '127.0.0.1:c:a.fdb',
host: '127.0.0.1:c:a.fdb',
port: 3050 }

帮助我。

最佳答案

尝试:

options.host = '127.0.0.1'; or options.host = 'localhost'; 

代替

options.host = '127.0.0.1:c:\a.fdb';

options.database = 'c:\a.fdb'; 

代替

options.database = 'a';

关于node.js - Firebird - getaddrinfo ENOTFOUND,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39429372/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com