My problem is rather strange. I am using the same code via pipe and WEBrick server. With pipes, it works as expected and data gets stored into the sqlite3 database, while with WEBrick it just saves the data in-memory, and it never gets written into the database.
I am trying to write it with following code
db.transaction do |tx|
tx.execute("UPDATE cryptokeys SET active = 1 WHERE domain_id = ? AND id = ?", [d_id, args["id"]])
end
While WEBrick is running the data is available, but once it shuts down, the data is nowhere to be found.
I tried with
db.transaction
db.("UPDATE cryptokeys SET active = 1 WHERE domain_id = ? AND id = ?", [d_id, args["id"]])
db.commit
But the data is still not saved. Any ideas would be greatly appreciated.