On Thu, 24 Jan 2013 07:31:04 -0800
Frank Chang <[email protected]> wrote:

> Could anyone suggest which C++ data structure to use to cache a sqlite
> query result?

std::deque<T>, where T is a structure you define based on the result.  

Any container with O(1) insertion is your friend.  :-)

--jkl
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to