[PHP] Re: php mysql blob fields

2001-11-21 Thread Fred
If insert works and update does not, I would guess it is because you spelled the table name wrong in the update query. Fred Rodrigo Peres [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, I have a table in mysql that stores some images my fields in this

Re: [PHP] Re: php mysql blob fields

2001-11-21 Thread Mark
Yes, that's a big one :) also, to save the headache of reading and escaping the image correctly you can let mysql do the work: update table set field=LOAD_FILE('/path/to/image.gif'); On Wed, 21 Nov 2001 12:16:47 -0800, Fred wrote: If insert works and update does not, I would guess it is because