-2
我是Orientdb的新手,我想了解更多關於如何使用nodejs和orientdb的信息。任何網站,建議,影片將是有益的..謝謝Nodejs和Orientdb數據庫連接?
我是Orientdb的新手,我想了解更多關於如何使用nodejs和orientdb的信息。任何網站,建議,影片將是有益的..謝謝Nodejs和Orientdb數據庫連接?
您可以找到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();
希望它幫助
Regards
感謝您的文檔鏈接.. – Nicole