From: Warren Young Date: November 1 2006 5:16pm Subject: Re: How to call a stored procedure with parameters List-Archive: http://lists.mysql.com/plusplus/6082 Message-Id: <4548D683.3030802@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Urscheler, Roger (COM Chantry CA) wrote: > > Does anybody have an example of how to call a stored procedure using mysql++ > with IN/OUT parameters? MySQL++ doesn't have any special support for that. You'd just build a query using any of the standard mechanisms, and execute it. Fundamentally, it's no different than the way you'd do it with the C API. See the examples if you need code for this.