Bear in mind a relational database is designed around relations. It's not obvious what your 'data model' is but there is a suggestion it contains variable types of things. If you want to store variable things then many of the features of a relational database don't work.
Often an object maps reasonably to an entity, and an entity shares its structure with other entities of the same entity type. In this case you can easily map object attributes to fields in a table. Maybe you are storing something more esoteric. You may have to serialize the object rather than store it as fields. -- View this message in context: http://www.nabble.com/Question-on-converting-objects-into-relational-db-tp25385539p25432919.html Sent from the SQLite mailing list archive at Nabble.com. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

