2017-10-15 124 views

回答

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(); 

希望它幫助

Regards

+0

感謝您的文檔鏈接.. – Nicole