> i used the readbinary on the CFFILE tag. On my insert do
I need to use imageGetBlob.
... Hmm, from your other thread I thought #ItemAdded# was a
string. But maybe not.
The cffile / readBinary is meant as a replacement for
ImageGetBlob. So if you _are_ using cffile / readbinary, you
already have the bytes. You do not need to use ImageGetBlob on top
of it. Just use the variable directly.
<cffile action="readBinary" file="(..whatever..)"
variable="imageBytes">
...
<cfqueryparam cfsqltype="cf_sql_blob"
value="#imageBytes#">
...