排除 orientjs 的基本问题(node.js 的 OrientDB 驱动程序)

Troubleshooting basic issues with orientjs (OrientDB driver for node.js)

我正在尝试使用 2.2 GA 版本的 OrientDB 测试最新版本的 orientjs。使用下面非常简单的代码,我没有得到任何错误或异常,也没有来自回调函数的输出。我也没有在 OrientDB 服务器日志中看到任何内容(在本地服务器上 运行 并且可以通过 Web GUI 访问)。

var OrientDB = require('orientjs');

try {
  var server = OrientDB({
    host: 'localhost',
    port: 2424,
    username: 'admin',
    password: 'admin'
  });
} catch(error) {
  console.error('Exception: ' + error);
}

console.log('>> connected');

try {
  server.list()
  .then(function(dbs) {
    console.log(dbs.length);
  });
} catch(error) {
  console.error('Exception: ' + error);
}

try {
  var db = server.use({
   name: 'GratefulDeadConcerts',
   username: 'admin',
   password: 'admin'
  });
} catch(error) {
  console.error('Exception: ' + error);
}

console.log('>> opened: ' + db.name);

try {
  db.class.list()
  .then(function(classes) {
    console.log(classes.length);
  });
} catch(error) {
  console.error('Exception: ' + error);
}

db.close()
.then(function() {
  server.close();
});

我该如何解决这个问题?

我认为用户名和密码错误。

顺便说一句,如果你想捕获错误,你应该使用 promises catch 而不是 try/catch block

  var OrientDB = require('orientjs');
  var server = OrientDB({
    host: 'localhost',
    port: 2424,
    username: 'admin',
    password: 'admin'
  });

  server.list()
  .then(function(dbs) {
    console.log(dbs.length);
  }).catch(function(error){
    console.error('Exception: ' + error);    
  });

这个脚本会发生什么?

 var OrientDB = require('orientjs');
  var server = OrientDB({
    host: 'localhost',
    port: 2424,
    username: 'root',
    password: 'root'
  });

  var db = server.use({
   name: 'GratefulDeadConcerts',
   username: 'admin',
   password: 'admin'
  });




  db.query('select from v limit 1')
  .then(function(results) {
  console.log(results)
    server.close();

  }).catch(function(error){
      server.close();
  });