Hi there,

I have a data driven database schema that I am trying to implement in
sqlalchemy. Here's how the tables look like:

user
user_id | .... | ....

user_properties
property_id | property_name | property_description

user_properties_data
user_id | property_id | property_value

What I would like to do eventually is if I have u = User() , u.
[some_propery_name] return the property_value if it exist for that
user.

Any suggestions on how to implement this?

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@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.

Reply via email to