From: Warren Young Date: June 21 2006 6:12pm Subject: Re: Large class to table List-Archive: http://lists.mysql.com/plusplus/5747 Message-Id: <44998C26.4050904@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Jim Langston wrote: > Is there an override that will let me do something like: > > con.something() << Field1 << field2 << field3 << field4; Read up on template queries in the user manual. Then keep reading the user manual, because you might just discover other interesting things. You might also consider subclassing from SSQLSes, so you can insert your more complicated classes directly. Unless you run into some kind of overload conflict, this should work. The main consequence of this is that it makes the data members public, which is a no-no in some coding shops.