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
        [EMAIL PROTECTED]

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

Reply via email to