我是Orientdb的新手,我希望了解更多关于如何在nodedb中使用nodejs的信息。任何网站,建议,视频都会有所帮助..谢谢
答案 0 :(得分:0)
您可以在OrientDB官方文档中找到一些示例:https://orientdb.com/docs/2.2/OrientJS.html#orientjs-driver
无论如何,这是一个连接的例子:
var OrientDB = require('orientjs');
var server = OrientDB({
host: 'localhost',
port: 2424,
username: 'root',
password: 'root'
});
var db = server.use({
name: 'GratefulDeadConcerts',
username: 'root',
password: 'root'
});
server.close();
希望有所帮助
此致