From: Dan Nelson Date: March 15 2006 7:34am Subject: Re: insert my_ulonglong data with C API List-Archive: http://lists.mysql.com/mysql/195839 Message-Id: <20060315073444.GE48583@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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