| query_len = sprintf(query, "CREATE TEMPORARY TABLE temp SELECT ....");

try it out with asprintf(). 
but you have to define at compile time the following -D_GNU_SOURCE

maybe you allocates not enough place for query. asprintf do it for you.

char *query;
int query_len;

query_len=asprintf(&query,"select...");
mysql_real_query(db_read, query, query_len);
free(query);
if (..){
...

cheers,

ati

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to