Answers for "update data sequelize"

0

update data sequelize

db.connections.update({
  user: data.username,
  chatroomID: data.chatroomID
}, {
  where: { socketID: socket.id },
  returning: true,
  plain: true
})
.then(function (result) {
  console.log(result);   
  // result = [x] or [x, y]
  // [x] if you're not using Postgres
  // [x, y] if you are using Postgres
});
Posted by: Guest on August-31-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language