On Monday 26 June 2006 01:04 am, Arias Gonzalez, Javier wrote:
> memset(bind, 0, sizeof(bind));

This is probably your issue right here.  You've already got bind[3] with 
storage allocation for 3 MYSQL_BIND's.  Now you're filling bind[0] with 0's, 
effectively erasing the allocated MYSQL_BIND in bind[0].  Take that line out 
and things should work.
-- 
Chris White
PHP Programmer / DBlair Witch Project
Interfuel

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to