在orientdb和水线的交易

时间:2015-03-24 15:17:14

标签: sails.js orientdb waterline sails-orientdb

我正在尝试在水线创建交易,但我从OrientDB收到此错误:

com.orientechnologies.orient.core.command.OCommandExecutorNotFoundException: Cannot find a command executor for the command request: sql.BEGIN

这是我的代码:

 try {
  itemsModel.query("BEGIN", function(err) { if (err) {throw new Error(err);}
    itemsModel.update({id:items_ids,status:ACTIVE},{status:INACTIVE})
      .exec(function(err, INA_items){ if (err) {throw new Error(err);}
        if (INA_items.length != items_ids.length ) {throw new Error({err:RECORD_NOT_FOUND});}
        itemsModel.query("COMMIT", function(err) { if (err) {throw new Error({err:MSG.RECORD_NOT_FOUND,title:"ITEMS"});} });
      });
  });
}
catch(e){
  itemsModel.query("ROLLBACK", function(err) { 
    if (err) {return res.serverError(err);}
    return res.serverError(e);  
  });
}

我还直接在orientdb中检查了BEGIN命令,但是同样的错误。

1 个答案:

答案 0 :(得分:1)

现在的问题是混合几个不同的概念,我将尝试逐一解决:

  1. Waterline的API本身不支持交易(查看issue #755);

  2. 看起来您正在使用sails-orientdb适配器,并且正在执行原始 SQL查询;

  3. 您在示例的第二行中执行的SQL查询只是BEGIN,而且这是OrientDB本身抛出错误的地方。事务SQL查询必须类似于:

    begin
    let account = create vertex Account set name = 'Luke'
    let city = select from City where name = 'London'
    let edge = create edge Lives from $account to $city
    commit retry 100
    return $edge
    

    取自OrientDB docs

  4. 的示例
  5. 或者,您可以通过使用Oriento数据库对象在更多 javascript样式中使用事务。假设您正在使用sails-orientdb,您可以像这样获取Oriento DB对象:

    var db = itemsModel.getDB();
    
    // using oriento syntax, you can do something like
    var tx = db.begin();
    tx.create({
      '@class': 'TestClass',
      name: 'item3'
    });
    return tx.commit()
    .then(function (results) {
      console.log(results.created.length);  // should be 1
    });
    

    取自Oriento tests的示例。另一个很好的例子可以在Oriento's example folder找到。