[sqlalchemy] Re: sql views - how?

2008-10-24 Thread Kyle Schaffrick
On Thu, 23 Oct 2008 16:16:50 -0400 Michael Bayer [EMAIL PROTECTED] wrote: On Oct 23, 2008, at 3:40 PM, [EMAIL PROTECTED] wrote: hi i've no much idea about sql views, so i want to ask something. As i understand, views are sort-of virtual tables consisting of whatever a query

[sqlalchemy] Re: sql views - how?

2008-10-23 Thread Michael Bayer
On Oct 23, 2008, at 3:40 PM, [EMAIL PROTECTED] wrote: hi i've no much idea about sql views, so i want to ask something. As i understand, views are sort-of virtual tables consisting of whatever a query structure may contain. So: 1) is it possible sql views to be created via SA in a more or

[sqlalchemy] Re: SQL Views ?

2007-01-30 Thread Michael Bayer
you can probably get away with it by just creating a Table with the view name and view columns as Columns inside the Table. reflection is generally not available, someone would have to make the effort to implement that for all the database modules. On Jan 30, 2007, at 5:50 PM, Guy Hulbert

[sqlalchemy] Re: SQL Views ?

2007-01-30 Thread Guy Hulbert
On Tue, 2007-30-01 at 18:57 -0500, Michael Bayer wrote: you can probably get away with it by just creating a Table with the view name and view columns as Columns inside the Table. reflection Yes. I found this on one of the mailing lists. I wanted something on which I could do: v