我正在使用nativescript但无法连接数据库是orientdb。我尝试npm install orientjs https://github.com/orientechnologies/orientjs但没有成功。请帮帮我
答案 0 :(得分:0)
运行命令后:npm install orientjs
将此代码保存在file.js:
中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();
<强>更新强>
var OrientDB = require('orientjs');
var server = OrientDB({
host: 'localhost',
port: 2424,
username: 'root',
password: 'root'
}).use({
name: 'GratefulDeadConcerts',
username: 'root',
password: 'root'
});
server.close();
希望有所帮助