Subject Re: Storing a file in BLOB field through Stored Procedure
Author Adam
--- In firebird-support@yahoogroups.com, Shariful Alam
<murad_mouri@...> wrote:
>
> I need to store any file in a BLOB field through
> Stored Procedure. How can I do this?

Declare the input parameter to the stored procedure as a blob, then
use it in your stored procedure statements as if it were any other
type of variable.

The tricky thing is calling that stored procedure from your
application, you need to use parametised queries to do this.

Adam