In the last episode (Mar 15), ???? said:
> Hello,everyone!
>
> My table has a bigint column which needs store 8bytes integer.
>
> I looked up in Mysql Menual. It seems that , if I use C API I can
> only use preapared statement functions to insert bigint values.
>
> I can not use mysql_real_query or mysql_query to insert bigint values
> because I do not know how to convert a my_ulonglong to a string or
> character array.
sprintf(buf, "insert into mytable values ( %llu )", myulonglongint);
--
Dan Nelson
dnelson@stripped