OrientDB和NodeJS如何连接DB?

时间:2015-01-21 12:16:21

标签: node.js orientdb

在使用mongoDB之前,我是OrientDB的新手。我想知道如何创建与OrientDB的连接。

我使用下面的代码,但不像MongoDB那样工作。我还想打印我的应用程序运行的端口号:'聆听6060号港口'

var orientdb = require('orientdb');

var dbConfig = {
   user_name: "root",
   user_password: "root"
};
var serverConfig = {
    host: "localhost",
    port: 2480     //server port Number
};

console.log(orientdb)

var server = new orientdb.Server(serverConfig);

var db = new orientdb.Db("remote:localhost/Gunjan", server, dbConfig);  
                       //I also used 'Gunjan' only here.
db.open(function(err) {
   if (err) {
       throw err;
   }
   console.log("Successfully connected to OrientDB");
});

1 个答案:

答案 0 :(得分:4)

请注意,orientdb已分叉为oriento,这是维护的。

示例:

var Oriento = require('oriento');

var server = Oriento({
  host: 'localhost',
  port: 2424,
  username: 'root',
  password: 'yourpassword'
});

// List databases
server.list().then(function (dbs) {
  console.log('There are ' + dbs.length + ' databases on the server.');
});

请注意,您必须在localhost:2424上运行OrientDB服务器。