From: Warren Young Date: December 9 2004 1:41am Subject: Re: Problem with Visual Studio .Net 2003 List-Archive: http://lists.mysql.com/plusplus/3778 Message-Id: <41B7AD39.3010508@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Pitu Caleya wrote: > > sql_create_3 (table, 1, 3, unsigned int id, CString name, CString info); That should be sql_create_3(table, 1, 3, unsigned int, id, string, name, string, info); The critical change is the additional commas. I don't know that MySQL++ will not work with class CString, but I have no evidence to believe that it will work, either. Use standard C++ strings if at all possible. The formatting change is just because I think it reads better that way.