Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.