firebird - getaddrinfo ENOTFOUND

时间:2016-09-10 18:38:46

标签: node.js npm firebird

我是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

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

{ [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 }

帮帮我。

2 个答案:

答案 0 :(得分:4)

尝试:

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';

答案 1 :(得分:2)

尝试localhost:c:\a.fdb作为您的主机和主机名