From: Warren Young Date: June 8 2009 9:17pm Subject: Re: Possible bug in ssqls List-Archive: http://lists.mysql.com/plusplus/8605 Message-Id: <12D2D25C-90EA-498E-9227-0945915F95AA@etr-usa.com> MIME-Version: 1.0 (Apple Message framework v935.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit On Jun 8, 2009, at 2:47 PM, Adrian Cornish wrote: > const char* NAME::names[] = { > $names > }; > ! const char* NAME::table_ = #NAME; > ) > > template No, that's not right. This is saying that the table name includes the quote marks. The quotes should only be added by the bits of code that create SQL. The table name remains the same regardless of whether it needs quotes or not. Also, it ignores SSQLS::table() and friends. By the way, it's easier to generate patches against svn. Just modify the code in the svn tree, then say "svn diff" to get the patch. This generates unified diffs instead of ... context? ... diffs, which patch(1) likes better.