From: Warren Young Date: July 20 2009 6:49pm Subject: Re: Load/store StoreQueryResult to file List-Archive: http://lists.mysql.com/plusplus/8671 Message-Id: <4A64BC48.7030705@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit BS TLC wrote: > Is there a fast way to store/load StoreQueryResult objects in files? > I don't want to save/load only the rows, but also the structure of > the object. What you're asking for is called serialization, and no, MySQL++ currently has no whole-data-structure serialization mechanisms. I'm considering adding it to SSQLS v2, but that's not going to appear for a while. It's not exactly what you were asking for, but check out the MySQL reference manual on the SELECT INTO OUTFILE syntax, and the complementary LOAD DATA INFILE. http://dev.mysql.com/doc/refman/5.1/en/select.html http://dev.mysql.com/doc/refman/5.1/en/load-data.html