Re: [sqlite] Serializiing an object's vector or array in c++ using sqlite3

2014-11-21 Thread Clemens Ladisch
Thane Michael wrote: > I've been searching for a way to serialize an object's vector using sqlite3 > but are yet find a working solution. The question is how to model the vector in the database. In most cases, you should normalize your tables: class A { int id; double som

[sqlite] Serializiing an object's vector or array in c++ using sqlite3

2014-11-20 Thread Thane Michael
Hi, I previously sent out out an email that was not clear, this email is meant to fix that. ---previous message I've been searching for a way to serialize an object's vector using sqlite3 but are yet find a working solution. How do I go about making it happen, an example would be of great help. A