Subject RE: [firebird-support] Firebird Stored Procedures to select to update from delphi application forms
Author Alan McDonald
> There seems to be some idea, that it is possible to use firebird
> stored procedures to populate user interfaces and then take the
> modifications and use them to update a database.
>
> This method seems unreasonable and impossible to me.
>
> Has anyone else done things this way?
>
> Kind Regards,
>
> Robert.

I could write an SP to do this
SP(direction, var, var...)
...
if (direction=0) // in
do update statement with vars

if (direction=1 // out
do selectable SP with vars as params


But why would you want to do this? what's the benefit?
Alan