I have fast question. I'am using GnatColl to connect witch
PostgreSQL.
Is there any way to call stored function insted of simple query?
Thanks.
> Is there any way to call stored function insted of simple query?
select * from function(arg1, arg2,...);
HTH...
Dirk
Not so far, although that should not be too difficult to add. We do
not use stored function ourselves because we have found them harder to
maintain, and we do not need the minor efficiency boost they provide
compared to prepared statements. I guess you could just create a new
instance of SQL_Table where the name is "function (arg1, arg2)". That
would not provide type checking on the Ada side, but at least you
could write the query I think
regards
Emmanuel