无法使用节点js连接嵌入式firebird数据库

时间:2018-05-16 08:54:56

标签: node.js firebird

我正在为Firebird数据库使用node-firebird javascript客户端。我无法使用node-firebird客户端连接Firebird数据库。我有嵌入火鸟数据库。我收到以下错误:

NodeJS firebird客户端:https://www.npmjs.com/package/node-firebird

  

E:\的NodeJS \火鸟\ demo.js:20           扔错了;           ^未定义

代码:

var Firebird = require('node-firebird');

var options = {};

options.host = '127.0.0.1';
options.port = 3050;


options.database = 'E:\\NodeJS\\Firebird\\Firebird_3_0_Embedded\\examples\\empbuild\\EMPLOYEE.FDB';
//options.lowercase_keys = true; // set to true to lowercase keys
options.role = null;            // default
options.pageSize = 4096;        // default when creating database

Firebird.attach(options, function(err, db) {

    if (err)
        console.log("Error :"+err);
        throw err;

 console.log("CONNECT SUCCESSFULLY");

    // db = DATABASE
    db.query('SELECT * FROM user', function(err, result) {
        // IMPORTANT: close the connection
        console.log(result);
        db.detach();
    });
});

任何人都可以告诉我如何使用NodeJS连接嵌入式firebird数据库

0 个答案:

没有答案