Re: SQLite3 json serializer and naked

2021-12-12 Thread jaso...@gmail.com
Thank you!! On Sunday, December 12, 2021 at 5:56:03 PM UTC-5 Jeremy Evans wrote: > On Sun, Dec 12, 2021 at 2:16 PM jaso...@gmail.com > wrote: > >> I'm experimenting using SQLite with some json APIs. Since there's no >> out-of-the-box support for json columns, I'm storing loosely-structured

Re: SQLite3 json serializer and naked

2021-12-12 Thread Jeremy Evans
On Sun, Dec 12, 2021 at 2:16 PM jaso...@gmail.com wrote: > I'm experimenting using SQLite with some json APIs. Since there's no > out-of-the-box support for json columns, I'm storing loosely-structured > data as json in a Text column using the serialization plugin: > > plugin :serialization >

SQLite3 json serializer and naked

2021-12-12 Thread jaso...@gmail.com
I'm experimenting using SQLite with some json APIs. Since there's no out-of-the-box support for json columns, I'm storing loosely-structured data as json in a Text column using the serialization plugin: plugin :serialization serialize_attributes :json. :transaction_data, :other_attributes