do you think is it possible to save myObject(many ivars) as a text representation (json, ston) in a column of a table?
imagine a table like the following
TABLE MyObject(representation TEXT)
in that case, i don't have to deal with a table definition. but i use the sqlite database as a simple persistence system for my objects. for example: a sale ticket.
i have to invest more time into this(an easy way to save objects). thanks in advance.
do you think is it possible to save myObject(many ivars) as a text representation (json, ston) in a column of a table?
imagine a table like the following
TABLE MyObject(representation TEXT)
in that case, i don't have to deal with a table definition. but i use the sqlite database as a simple persistence system for my objects. for example: a sale ticket.
i have to invest more time into this(an easy way to save objects). thanks in advance.