Re: BLOB field and ADO

2002-05-27 Thread Philippe PETIT
view this article, it's work fine with vb6 : http://support.microsoft.com/default.aspx?scid=kb;EN-US;q194975 ' insert Dim ts As String, Sql As String Dim RS Set RS = CreateObject("ADODB.Recordset") RS.CursorLocation = adUseServer RS.Open "tbl_test", CreateConnexionString(CnxSGDB),

Re: blob field

2002-02-11 Thread Shankar Unni
[redirecting to mysql list because of general interest] Yoram Naim wrote: > Can some one send me a code sample (C , CPP ) > How can I copy file data to MYSQL BLOB field > but not in one piece . Is this even possible? If so, I'm sure that the JDBC driver could use such a feature to stream lar

Re: blob field

2002-02-06 Thread Shankar Unni
Venu wrote: > Its possible with MyODBC Drivers to 'n' size. You can > supply BLOB/CLOB data in pieces to desired size by > making use of SQLParamData and SQLPutData APIs. Does the MySQL wire protocol support this? Or is MyODBC emulating this by reading and updating the entire blob after each p

RE: blob field

2002-02-06 Thread Venu
Hi, > -Original Message- > From: Shankar Unni [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 06, 2002 9:29 AM > To: Yoram Naim > Cc: '[EMAIL PROTECTED]' > Subject: Re: blob field > > > [redirecting to mysql list because of general interest]

Re: blob field

2002-02-06 Thread Shankar Unni
[redirecting to mysql list because of general interest] Yoram Naim wrote: > Can some one send me a code sample (C , CPP ) > How can I copy file data to MYSQL BLOB field > but not in one piece . Is this even possible? If so, I'm sure that the JDBC driver could use such a feature to stream lar