Admin Gen on view 

http://www.symfony-project.org/forum/index.php?t=msg&th=7645&

The update-able view is the way the database systems use for security, to restrict users from accessing fields that they are not authorized to. So my question is,

Is there any way to use Admin Gen on a database view?

Please add support for SQL VIEWS 

http://www.symfony-project.org/forum/index.php?t=msg&goto=31774#msg_31774

Views already work with symfony. For complex queries, just define the view in your schema.?ml, set the table as "read only" in the schema unless you want the view to be updateable, re-build the model, and voila, you have a view which is accessible in the model.

documented on: 19 July 2007, halfer

Please add support for SQL VIEWS 

> Could you please do an example, because im having trouble findig any
> documentation on Propel's site?

There may not actually be any - I just worked it out myself:

  1. Create a view involving tables within or outside of your existing model

  2. Find your existing config/schema.xml or config/schema.yml file

  3. Edit it and add the <table> section for your view. Make sure you define a single or composite primary key as Propel needs this

  4. Rebuild the model

documented on: 19 July 2007, halfer

Database Views 

http://www.symfony-project.org/forum/index.php?t=msg&goto=31116#msg_31150

What is the best way to implement database views in symfony. Create a model with read-only capabilities?

I think it is quite useful to use them.

— ivelindobrev

There are some folks here using db views, have a look at this post http://www.symfony-project.org/forum/index.php?t=msg&&th=5106&goto=21955#msg_22057

documented on: 10 July 2007, pezetgee

Database Views 

http://www.symfony-project.org/forum/index.php?t=msg&th=5106&goto=21955#msg_22057

Re: mysql operator hierarchy and propel

for commonly used queries I write a view, and then create the view in my schema with a read-only tag. It's a reasonably clean solution and saves a lot of messing around with Propel.

documented on: 20 February 2007, halfer

Database Views 

> i'm not sure i know what you mean when you say "i write a view"

OK, let's say you have a commonly used select statement involving three or more tables, perhaps with some left joins, or some features (such as subselects) that are tricky to arrange in Propel. My solution is to create a view in my database that performs the select that I require, and then I add this in as a "table" in my schema.?ml file. Then all I do is rebuild the model, and - hey presto - I have a Propel object that relates to a view.

In some databases, providing your view only obtains its columns from one table, you can even write to it (ie an updateable view). On other databases, or if the columns come from a variety of tables, it is a good idea to set the Propel read-only tag in the schema, to prevent saves being attempted.

> gotcha, i've done that kind of thing with sql server. is this possible with
> MySQL?

Apparently so, on MySQL 5 (I used Google to answer your question!). Also what I didn't know was that *some* multiple-table views can be updatable too:

http://dev.mysql.com/doc/refman/5.0/en/create-view.html

documented on: 02 May 2007, halfer

Database Views 

Halfer, have you figured out a way to generate the "create view" statement necessary based on the readonly "table" in your schema? The problem is that every time I do a propel-insert-sql or a propel-build-all, my view gets destroyed, and I end up recreating it.

documented on: 12 June 2007, east3rd