Im hard pressed to store data as \'JSON\' format into my sqlite database for an rails application. I have searched for how to store data as JSON in my sqlite database but am
You need to generate a string from your JSON and then save that string in your database as a regular string.
require 'json'
my_hash = {:hello => "goodbye"}
puts JSON.generate(my_hash) => "{\"hello\":\"goodbye\"}"
When you need to use that JSON object, you select your json string and convert it to JSON object using:
json_object = JSON.parse(string)
You can read about JSON objects here: http://ruby-doc.org/stdlib-2.0.0/libdoc/json/rdoc/JSON.html