Subject | RE: [firebird-support] Firebird Stored Procedures to select to update from delphi application forms |
---|---|
Author | Alan McDonald |
Post date | 2009-11-16T22:50:55Z |
> There seems to be some idea, that it is possible to use firebirdI could write an SP to do this
> 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.
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