How can I insert blob data into my database through SQL alone. I have a set of functions I can use in php to do it, but without php, delphi, java and only useing SQL how can I do this.
I read in a responce to someones post on anothe forum, you can use parameters:
insert into mytable
(column1, blob)
values (4, :blobparam);
then all they said was prepair that statement, then set the param. But how?
I cant find any examples on this, other then useing java, delphi or simular.
Can someone please direct me to an example or more information.