Looking through the different recipes I noted the one on views
(http://www.sqlalchemy.org/trac/wiki/UsageRecipes/Views). Would like to
use this with the ORM but some of my views have a stored procedure as a
select.
Is it possible with SA to create a "selectable" as is needed for the
Views recipe from/with a stored procedure?
The view definition in Firebird SQL is:
CREATE OR ALTER VIEW COUNTRIES_LV(
ID,
NAME,
ISO2,
ISO3,
TELCODE,
CREATED_AT,
UPDATED_AT)
AS
select * from countries_lp;
"countries_lp" being the stored procedure.
Werner
--
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en.