2

クエリ ビルダー knex.js を試す ( http://knexjs.org/ )

exports.deleteProduct = function(inputs, callback) {
  //Working
  knex( "products" ).select().exec(function(err, resp) { console.log(resp) });

  //Not working
  knex( "products" ).del().where( "pr_id", 349).exec(function(err, resp) {          console.log(resp) });;    
}

select ステートメントは問題なく動作します。削除はしませんが、更新も試しました。応答は 0 です。レコードは削除されていません。データベースを確認しました。console.log(err) を実行してもエラーは発生しません。

何か案は?

4

1 に答える 1