From: Warren Young Date: January 23 2008 1:57am Subject: Re: SSQLS; macros with more than 127 parameters List-Archive: http://lists.mysql.com/plusplus/7401 Message-Id: <47969EEC.4040706@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Tom Moers wrote: > > Does anyone know a way around this? 1. Refactor the table so it uses a sane number of columns 2. Split your queries so they only ask for <= 127 columns 3. Start work on SSQLS v2, per the plan in the Wishlist: http://svn.gna.org/viewcvs/*checkout*/mysqlpp/trunk/Wishlist Personally, I favor #1. In all the years I've been maintaining MySQL++, my challenge to anyone needing more columns has been "show me your schema". I've yet to get one that wasn't better refactored so you don't hit the limit to begin with. Working under constraints often forces you to reevaluate what you really need.