From: Jorge Bastos Date: December 23 2004 10:11am Subject: blob List-Archive: http://lists.mysql.com/dotnet/334 Message-Id: <001d01c4e8d7$cd90d450$0301a8c0@pcjorge> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001A_01C4E8D7.CB9C3040" ------=_NextPart_000_001A_01C4E8D7.CB9C3040 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable DecimalHi Reggie, I have a little problem, when using the old 0.76 when i insert values in = a blob field it was ok, now when i changed to 1.0.3 isn't working. Perhaps the code need something to be ajusted? I'll show below how i was inserting the images into the blob field. The field gets empty with 1.0.3! Can you give me a tip? The code: MyCon =3D New MySqlConnection("cs here") MyCon.Open() MyCmd =3D New MySqlCommand(sql, MyCon) sql =3D "insert into imagens values ('" + txtemp.Text + "','" + lg + = "',@buffer)" MyCmd.CommandText =3D sql MyCmd.Connection =3D MyCon MyCmd.Parameters.Add(New MySqlParameter("@buffer", buffer)) MyCmd.ExecuteNonQuery() mycon.close ------=_NextPart_000_001A_01C4E8D7.CB9C3040--