Propel is an open-source Object-Relational Mapping (ORM) for PHP5. It allows you to access your database using a set of objects, providing a simple API for storing and retrieving data.

learn more… | top users | synonyms

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 ...
3
votes
0answers
343 views

Error after Upgrading FOS UserBundle from 1.2 to 2.0 in Symfony 2.1

I have a project in Symfony 2.1, with PropelBundle, and FOS UserBundle. I upgraded FOS UserBundle with Composer from 1.2 to the latest version (2.0) and followed the instruction to delete the ...
1
vote
1answer
103 views

How to have Propel ORM 1.6 created_at fields?

I tried to specify this field: <column name="created_at" phpName="CreatedAt" type="TIMESTAMP" required="false"/> However, whether it's required or not, Propel never seems to place the current ...
0
votes
1answer
36 views

How do I move the folder to the new site build?

How can I transfer the build folder to another site? The problem is that the name of the database table prefix is sewn into the files and if I have a lot of sites I will have to manually change the ...
0
votes
1answer
131 views

Is it possible to have test_schema.xml in Propel 1.6?

I am using Symfony-2.0 and Propel 1.6. For testing purposes I'd like to have separate schema file. The reason is that with my current schema it is impossible to load dumped fixtures, because process ...
0
votes
2answers
204 views

Order by in relations PROPEL

I have: # config/schema.yml propel: jobeet_category: id: ~ name: { type: varchar(255), required: true, index: unique } jobeet_job: id: ~ category_id: ...
1
vote
1answer
65 views

Propel Nested Set Undelete Soft Deleted

I use propel and soft delete and propel nested set. When I delete a node without children and then do $node->undelete() everything is fine, node is recovering from soft delete. But if a node have ...
1
vote
1answer
215 views

Propel ORM: originating save() re-triggered in cascaded save

I have two Propel-based (Propel 1.6) model classes, FileUpload and Image: <table name="file_upload"> <column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true" ...
-1
votes
1answer
108 views

What to consider when deploying a Propel project?

I can't find any information about the deployment of a Propel project. I finished developing my website and I want to upload it to a public web server. What should I consider to avoid security ...
0
votes
1answer
288 views

Symfony - Propel - Determine current version of propel

Is there a better way of determining which version of Propel that Symfony 1.4 is built upon? Right now I am having to do: $ -> ack -i version ...
0
votes
1answer
314 views

Symfony 2.0.9 and wrong PropelBundle version

I'm having troubles with PropelBundle versions using Symfony 2.0.9. ErrorException: User Deprecated: The PropelBundle uses a new branching model, you should switch to the 1.0 branch (1.0.x ...
0
votes
1answer
151 views

Reverse Propel ORM results in 'Buildfile: /build.xml does not exist'

When calling the following command from within a folder with build.properties file in it # ../propel/generator/bin/propel-gen . reverse I get Buildfile: /build.xml does not exist! Is this ...
3
votes
1answer
247 views

Should Propel be the “model” part of MVC? [duplicate]

Possible Duplicate: How should a model be structured in MVC? I read a lot of material about MVC and ORM, but a lot of documentation on the Internet is confusing. As I understand it, the ...
3
votes
1answer
270 views

Propel 1.6 i18n with Symfony2 forms

Has anyone here used Propel's i18n behaviour with Symfony2? I can't seem to find anything about this, and I don't know how to start. I'm looking forward to use Symfony2 forms with Propel 1.6 i18n, ...
0
votes
1answer
229 views

add Count to SQL query in Propel

I have in my project old version (1.2) Propel. I would like make query: SELECT city_id, COUNT(*) FROM House GROUP BY city_id I tried: $c = new Criteria; $c->addAsColumn('count', 'Count(' . ...
0
votes
1answer
79 views

Build shema.yml file with current database in memory to compare with available schema.yml

I have been trying to create schema.yml content in memory from a behavior I have written. I want to test if any changes made by a developer to schema.yml comply with the current database fields and ...
0
votes
0answers
90 views

action object overwrite by component last object in symfony 1.0

I am working on project which is in symfony 1.0 I have created result set in action file as follows $perform = new Criteria(); $perform->clearSelectColumns(); ...
3
votes
2answers
246 views

nested SQL Statements with Propel?

I'm trying to translate a SQL Statement into Propel, without so much success. I have this SQL Statement: SELECT id, param1, param2 FROM Field1 WHERE id in ...
1
vote
1answer
469 views

How to get row count with a query using Propel 1.6's Custom SQL?

I have a project in Symfony2 using Propel ORM 1.6 and PostgreSQL. I'm trying to get the number of rows from a Query using Custom SQL as shown in this link in the following way: $con = ...
0
votes
1answer
222 views

access to extended class in symfony 1.4

so... I basically follow the practical symfony book, and encountered following problem. I have properly (i guess) installed sfGuardPlugin, built the models, sqls etc, created user and tried to log in ...
1
vote
1answer
354 views

How can I dynamically add an attribute to each option tag generated by sfWidgetFormPropelChoice?

In my symfony 1.4 application, I'm generating a select drop down as part of a form. I later want to apply some jQuery (ddSlick) to that select to re-style it. In order to do so, I need to add an ...
0
votes
0answers
323 views

Installing Propel with XAMPP on OSX

I'm very new to the unix command line and am very confused, any help would be great. I'm running a copy of XAMPP on Lion and am trying to install the Propel ORM. I am able to git the files to my ...
3
votes
2answers
677 views

Clear propel cache (instance pool)

I need to force reread data from DB within one php execution, using propel. I already have a bit hacky solution: call init%modelName% for corresponding classes, but want something better. Is there ...
0
votes
2answers
73 views

Optimizing propel data insertion for a very long data file

I'm reading a very long text file where each line is composed of an ID, groupID, and additional data. Each ID can be associated with many groupIDs (lines 1,2,3), and each ID-groupID combo can be ...
2
votes
2answers
149 views

Propel paginate with newly added items (setting offset manually or sth.)

I have a page where I render items from my database in reversed chronological order. Last added item is the first item on top of the page. I use infinite scrolling, so everytime the user hits the ...
0
votes
1answer
156 views

How to create custom SQL Propel Task for Symfony Task?

I want to insert data into a Table with a for-loop. First of all I have create a Symfony Task with: symfony generate:task namespace:MyTask now I'm trying to generate a propel sql task that I can ...
0
votes
1answer
649 views

Install propel using composer

I am trying to use propel with composer but I'm getting errors. My composer.json is: { "require": { "propel/propel" : "*" } } and the error is: Problem 1 - The requested ...
1
vote
3answers
479 views

Symfony task - memory leak

I wrote a symfony task to fill a database of sample data. Here's a sample piece of code: gc_enable(); Propel::disableInstancePooling(); public function test() { for($i = 0; $i < 10000; $i++) ...
0
votes
1answer
45 views

Is there a way to ignore existing tables when using Propel?

I am using Propel for PHP and I want to create a diff task to create new tables. The issue is this is inside an existing database with tables already existing. I don't want these tables to be ...
0
votes
1answer
87 views

How to remove automatically inserted Queries from Propel(Symfony)?

I'm writing some Database queries with Propel(symfony), but propel always add some query! For example : SELECT COUNT(*) FROM table WHERE (table.start>='2012-06-01 00:00:00' AND ...
1
vote
2answers
723 views

Propel Multiple Database Modeling

I've just started working with Propel and I love it, but I have a question regarding how to utilize multiple database connections. I know I can set stuff up in my schema to connect to multiple ...
0
votes
1answer
107 views

How to update Propel Classes after updating the Database in Symfony?

I'm using a Test Database on my Localhost! For further Tests Scenarios i dumped the Live Database(with new Tables and many more data) and i imported it in my localhost Database. Now i have some ...
1
vote
2answers
251 views

Is Propel's fromArray/fromJSON feature safe from SQL injection?

The Propel ORM documentation mentions a neat import/export feature using functions like fromArray and fromJSON, that should allow something like this: $foo = new Widget(); $foo->fromArray($_POST); ...
0
votes
2answers
90 views

Propel 1.6 Formatter

Is there any way I can set a formatter on models that will convert negative numbers to positive numbers for all numeric fields in the model? I started out by trying to make a propel formatter but I'm ...
2
votes
2answers
128 views

Sort WHERE IN SQL [duplicate]

Possible Duplicate: mysql custom sort I have an array of IDs: $ids = array(5, 1, 4, 2, 3); and I make a query: SELECT * FROM Persons WHERE id IN $ids and I receive this object: 1, ...
2
votes
1answer
389 views

Propel filtering based on joined tables columns?

How do I filter based on a joined table's columns in Propel? Like: $results = FooQuery::create()->joinBar()->filterByBarSurname('surname');
0
votes
0answers
138 views

sfPropelORMPlugin: unable to build forms

Tried to upgrade to propel 1.6.5 using SVN Way from propel git install guide and got this issue: Unable to find the model dir name (model) in the package ...
0
votes
1answer
193 views

How to Modify a column of a table with Propel Migration and Symfony

I've got a huge problem with a propel migration in a symfony project. For the very first time, I tried to alter a column of table, but I always got the following error on CLI: $ php symfony propel:up ...
0
votes
2answers
93 views

Propel Saving: naming convention

I am having troubles with the casing of variables in Propel Current code that works: $this->_variables = array('Alias' => 'aliasOne', 'LocationId' => 1); $model = new Client(); ...
0
votes
1answer
259 views

Propel_Generator - include paths in the classmap-file incorrect

i am using the propel runtime v1.5.4 and its related propel_generator in my zend_framework/php project since two years without any problems. Yesterday i have updated the propel_generator via pear to ...
2
votes
2answers
217 views

PropelBundle database:create for postgres

I've installed propel bundle for symfony2. my database configuration is: propel: dbal: driver: pgsql user: postgres password: ...
0
votes
1answer
632 views

Propel, Add alias to select statement

I'm using propel master-dev with symfony 2.1. Is possible to write something like that ? Else how can I add an alias to the select statement. $products = ProdottinewQuery::create() ...
1
vote
1answer
56 views

How to update further tables on adding a relationship in propel

I'm trying to work out where is the best place to update other related tables when changing a foreign-key dependency. To be precise, I have a table called 'flat' and another called 'room' which ...
0
votes
0answers
107 views

Why is sfPropelORM breaking my form filter criteria?

I was using the sfPropel15Plugin with Symfony 1.3.11, and everything was working great. I decided to upgrade the plugin to the sfPropelORMPlugin, which uses Propel 1.6. I did the normal steps to ...
0
votes
0answers
170 views

Symfony2 Security Component And Propel, Incorrect table name in the select statement

I read this page for manage my symfony2.0 login form with propel orm. On form submit propel returns this error: Warning! Unable to execute SELECT statement [SELECT admin.ID, admin.USERNAME, ...
0
votes
1answer
82 views

Propel - propel:build-sql - Ability to add CREATE DATABASE .. IF NOT EXISTS

I'm customizing a phpUnderControl build file to use the symfony propel:build-sql functionality to generate .sql files to be loaded for every build (not every test). What I am running into is that the ...
0
votes
1answer
376 views

Unable to execute insert statement while saving in symfony (propel) form with map list

In doSave() function in form I'm trying to save article category (which it is a node in a tree), and then assign to this category articles (many to many relationship). I'm getting an error while in ...
0
votes
1answer
352 views

Many to many relation on same table

I've got a little problem with many to many relations on the same table using Symfony 1.4 with the Propel ORM. My schema.yml looks like this: propel: item: _attributes: { phpName: Item } ...
0
votes
1answer
352 views

Propel - merge collection

Working with Propel ORM 1.5, I'm missing a method to merge two PropelCollections. A short proposal may be : public function mergeCollection($collection){ foreach($collection as $i => $item){ ...
0
votes
0answers
125 views

Facebook messaging system with propel orm

I have two tables as user_discussions and user_discussion_answers. user_discssions is a thread and user_discussion_answers is a thread message. I have to sort user_discussions with its last entered ...

1 3 4 5 6 7 14