Tagged Questions
1
vote
0answers
104 views
Propel ORM : Versionable + Concrete Inheritance behaviors issue
I've got an issue when I use jointly versionable and concrete_inheritance behaviors :
propel > om-template:
[propel-om] Loading XML schema files...
[propel-om] 3 tables found in 1 schema files.
...
2
votes
1answer
139 views
Propel: Undefined method when trying to create child object
Propel Version: 1.6.7
I am getting a PropelException when I try to run the following code in my application (this code runs in a class called AdminController under a controller action). The code in ...
1
vote
1answer
73 views
Is there a way to use a single inheritance table as a foreign key table in propel?
In one project, I've got a generic Meta table that any other table can use to store additional data into.
The Meta table has a (target_type, target_id) pair of columns that reference the foreign ...
1
vote
1answer
223 views
Adding Functionality to Multiple Base Classes in Propel
I have a group of model peer classes that should all have the same functions. Rather than copying and pasting to each every time I add a new one to the group, I would rather add the functions to a ...
3
votes
2answers
195 views
Cannot Declare Child Class Method declared in Interface on Super Class
This should be a pretty straightforward classes and interfaces question, but please bear with me while I lay out my example.
In the Propel ORM library, all the database tables are abstracted as ...
1
vote
1answer
172 views
inheritance issues with propel 1.5.2
In propel 1.3 and 1.4 the following inheritance structure worked fine.
table name="payment_method" baseClass="rwf.lib.SymmetricEncryptedObject">
column name="id" type="INTEGER" required="true" ...
0
votes
3answers
288 views
issue about selecting objects in an inheritance context in propel-symfony
I have an issue that is quite annoying with symfony 1.2 and propel.
I have a model where I have implemented inheritance using the single-table strategy. So, here is an excerpt of my model:
Ad (id, ...