- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 2.2 GA 版本的 OrientDB 测试最新版本的 orientjs。使用下面非常简单的代码,我没有得到任何错误或异常,也没有来自回调函数的输出。我也没有在 OrientDB 服务器日志中看到任何内容(它在本地服务器上运行并且可以通过 Web GUI 访问)。
var OrientDB = require('orientjs');
try {
var server = OrientDB({
host: 'localhost',
port: 2424,
username: 'admin',
password: 'admin'
});
} catch(error) {
console.error('Exception: ' + error);
}
console.log('>> connected');
try {
server.list()
.then(function(dbs) {
console.log(dbs.length);
});
} catch(error) {
console.error('Exception: ' + error);
}
try {
var db = server.use({
name: 'GratefulDeadConcerts',
username: 'admin',
password: 'admin'
});
} catch(error) {
console.error('Exception: ' + error);
}
console.log('>> opened: ' + db.name);
try {
db.class.list()
.then(function(classes) {
console.log(classes.length);
});
} catch(error) {
console.error('Exception: ' + error);
}
db.close()
.then(function() {
server.close();
});
我该如何解决这个问题?
最佳答案
我认为用户名和密码是错误的。
顺便说一句,如果你想捕获错误,你应该使用 promises catch 而不是 try/catch block
var OrientDB = require('orientjs');
var server = OrientDB({
host: 'localhost',
port: 2424,
username: 'admin',
password: 'admin'
});
server.list()
.then(function(dbs) {
console.log(dbs.length);
}).catch(function(error){
console.error('Exception: ' + error);
});
这个脚本会发生什么?
var OrientDB = require('orientjs');
var server = OrientDB({
host: 'localhost',
port: 2424,
username: 'root',
password: 'root'
});
var db = server.use({
name: 'GratefulDeadConcerts',
username: 'admin',
password: 'admin'
});
db.query('select from v limit 1')
.then(function(results) {
console.log(results)
server.close();
}).catch(function(error){
server.close();
});
关于javascript - orientjs 的基本问题故障排除(node.js 的 OrientDB 驱动程序),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37313570/
orientdb.insert() .into('User') .set({name: 'John', surname: 'Smith'}) .all(
如何使用 orientjs 在事务中更新插入边?我当前的实现更新插入两个顶点并总是创建一条新边: function add(db, from, edge, to, cb) { cb = cb ||
我想将 OrientJS 与 Express.js 一起使用。如何在发出任何 http 请求之前配置连接池,在请求/响应周期中从池中获取和释放连接,以及在关闭应用时完成连接池? 最佳答案 我查看了 O
我正在尝试使用 NodeJS 服务器上的 OrientJS 框架将对象保存到数据库中。该对象包含一些 native 参数以及应指向另一个类的记录的 RID 数组。看这个: var myObj = {
我正在尝试在 NodeJS(v0.12.2) 上使用 Orientjs(v2.0.0) 连接到 OriendDB(v2.0.13),如下所示: var OrientDB = require('orie
我不明白如何从 orientjs 查询中获取标准 JSON。我看到人们在谈论“序列化”结果,但我不明白为什么或如何做到这一点。有一个 toJSON() 方法,但我只看到它与 fetchplans 等一
如何在 oriento 中选择或更新多条记录?就像在吃水线上一样,我们可以 offersModel.update({id:items_ids,status:INACTIVE},{status:ACTI
我正在尝试做 orientjs 并表达 4 集成。 我对如何创建到 index.js 的路由感到困惑。 由于orientjs刚刚发布,我仍然找不到任何教程。 现在我只想从 orientdb 中做一个简
我想使用 OrientDB 作为 .csv 文件的数据库,并使用 OrientJS 将这些文件以原始形式存储在记录的二进制字段中。此外,我想将名称和描述存储为字符串。我浏览了文档并能够通过存储原始二进
我正在尝试使用 2.2 GA 版本的 OrientDB 测试最新版本的 orientjs。使用下面非常简单的代码,我没有得到任何错误或异常,也没有来自回调函数的输出。我也没有在 OrientDB 服务
在 Node 中,正确的执行方式是什么 Gremlin针对数据库的查询? 我当前尝试使用 Official Node OrientDB Driver : const { ODatabase } = r
我正在使用 Orientjs 创建一个具有一些属性的顶点以及一个链接属性“Relation”和一个序列属性“PersonID”。虽然我不知道如何实现以下目标:- var trx = this.db.l
我想在下面的环境中使用orientjs。 Windows 10 专业版 64 位 Node v6.9.2 node-gyp v3.4.0 orientjs 2.2.4 1) 安装“windows-bu
我正在使用 OrientJS (v2.2.10) 在 NodeJS (v8.11.3) 中开发一个应用程序,它将连接到本地托管的 OrientDB (v3.0.6) 数据库并进行查询。但是,当我尝试运
我是一名优秀的程序员,十分优秀!