List:MySQL and .NET« Previous MessageNext Message »
From:Jorge Bastos Date:December 23 2004 10:11am
Subject:blob
View as plain text  
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 = New MySqlConnection("cs here")

MyCon.Open()

MyCmd = New MySqlCommand(sql, MyCon)

sql = "insert into imagens values ('" + txtemp.Text + "','" + lg + "',@buffer)"

MyCmd.CommandText = sql

MyCmd.Connection = MyCon

MyCmd.Parameters.Add(New MySqlParameter("@buffer", buffer))

MyCmd.ExecuteNonQuery()

mycon.close
Thread
blobJorge Bastos23 Dec
  • Re: blobJorge Bastos23 Dec
Re: blobJorge Bastos23 Dec
  • RE: blobReggie Burnett27 Dec