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

66
votes
8answers
25k views

PHP ORMs: Doctrine vs. Propel

I'm starting a new project with symfony which is readily integrated with Doctrine and Propel, but I of course need to make a choice.... I was wondering if more experienced people out there have ...
13
votes
3answers
4k views

RedBean ORM performance

I would like to know, can Redbean ORM be used for performance oriented scenarios like social networking web apps, and is it stable even if thousands of data is pulled by multiple users at same time? ...
11
votes
2answers
3k views

symfony 1.4 propel:build-all not working on Mysql 5.5

i am using Symfony 1.4.8 and Mysql 5.5 i got this error when i run symfony propel:build-all You have an error in your SQL syntax; check the manual that corresponds to your MySQL server ...
10
votes
1answer
230 views

PropelORM v1 multiple databases

I have few problems with setting PropelORM to work with multiple databases. I couldn't find anything useful in the documentation. Generating schemas from multiple databases I prefer to make a ...
9
votes
3answers
2k views

Which ORM to use with Symfony2? [closed]

I'm starting a new project with Symfony2 and I'm not really sure which ORM to choose. I've heard some bad things about Doctrine2, especially when it comes to inheritance and DQL. It seems like Propel ...
8
votes
4answers
3k views

How to Zend Framework with Propel ORM

I'd like to integrate Propel with Zend framework. I've seen the integration of doctrine in the past but this post says it seems propel is done a bit differently. Propel has two things going for it ...
7
votes
2answers
9k views

Export MySQL Workbench data model directly to Schema YML in Propel/ Symfony

Is there any plugin that directly exports MYSQL Workbench data model directly to YML for Propel consumption?
6
votes
1answer
2k views

Weaknesses and forces of Doctrine 2 and Propel 1.6 [closed]

I would like to know what are the forces and weaknesses of Doctrine 2 and Propel 1.6. For instance, Doctrine 2 is really user friendly but limits you if you want to go beyond conformism. Doctrine 2 ...
6
votes
5answers
531 views

Using ORM classes directly from the controller in MVC, bad practice?

I've recently delved into using an ORM in my CodeIgniter application and one i've gone for is Propel. Now this gives me the power to basically use Propels classes as the 'Model' but is this bad ...
6
votes
2answers
2k views

Good comparison Doctrine vs Propel

I've seen plenty of comparisons of Doctrine vs Propel, but none of them has actually convinced me to choose Doctrine over Propel. I've been using Propel for a while now and almost every comparison I ...
5
votes
4answers
2k views

sfguard bundle for symfony2

There is a bundle for (Propel) for symfony2,is there sfguard bundle for symfony2
5
votes
5answers
5k views

How to compile Propel Criteria to SQL

How can I compile Propel Criteria to clear SQL? I've tried $criteria->toString(); but this is not I expected. Also I've tried ModelPeer::doSelectStmt($criteria) but it returned raw sql (required ...
5
votes
3answers
2k views

Storing a serialized object in MySql database

I have a big php object that I want to serialize and store in a MySql database. The table encoding is UTF-8 and the column to hold the serialized object encoding is also UTF-8. The problem is the ...
5
votes
3answers
19k views

In symfony, how to set the value of a form field?

I'm overriding my doSave() method to basically do the following: I have a sfWidgetFormPropelChoice field that the user can either choose from, or type a new option. How can I change the widget's ...
5
votes
1answer
1k views

phing installed but “not found” and not in pear list

I'm attempting to install the Propel ORM on CentOS which has a dependency for phing. I've run the following which was succesful: pear channel-discover pear.phing.info pear install phing/phing pear ...
5
votes
5answers
8k views

Symfony app - how to add calculated fields to Propel objects?

What is the best way of working with calculated fields of Propel objects? Say I have an object "Customer" that has a corresponding table "customers" and each column corresponds to an attribute of my ...
5
votes
1answer
233 views

How can I get extra columns when hydrating Propel objects with custom SQL?

I am using custom SQL to join two tables, apply some business logic to dates, then use the results to hydrate a propel object (collection). Here's my code: $testtypes = ...
4
votes
9answers
360 views

What do you consider before refactoring code?

I've got an application that just shipped. Since I wrote it, I've learned about amfphp and propel. Both would be 'nice' to be used in the application but I can't say that it would be required at ...
4
votes
4answers
4k views

Switch symfony 1.4 from Doctrine to Propel

How can I properly switch the newly installed Symfony 1.4 framework from Doctrine (that it is configured for by default) to Propel?
4
votes
4answers
265 views

Use of closing database connection in php

I was always in assumption that it is always a good practice to close database connection, regardless of database/ORM, like mysql_close(), Propel::close() etc. With reference to one of my other ...
4
votes
4answers
1k views

symfony - returning JSON from a peer method call in an action

I have some code that checks a parameter and the calls a peer method to get me items from the DB. What I need to get is these items in JSON. My peer method is like: public static function ...
4
votes
3answers
374 views

Instantiate PHP object with string via factory

This is similar to Can PHP instantiate an object from the name of the class as a string?. I'm using propel orm with PHP 5.2.17, and I want to store the name of a query class in the database, say ...
4
votes
2answers
2k views

UNION query with Propel ORM

I'm trying to create a UNION query using the Propel ORM e.g $criterion1 UNION $criterion2 anyone knows how to do this?
4
votes
1answer
151 views

Why must we assign a clone to a new variable?

I am currently learning to use the Propel ORM, and I want to reuse a critera for two slightly different queries: $criteria = ArticleQuery::create() ->filterByIsPublished(true) ...
4
votes
1answer
126 views

What are the rules of when propel's toArray() function will return referenced objects or just the top level?

I can't seem to nail the exact rule of thumb as to what is added to an array when using toArray(), insomuch that if I was to do something like this: $sheep = SheepQuery::create()->find(); foreach ...
4
votes
3answers
1k views

Importing HUGE JSON-encoded arrays without hitting memory constraints

I have a file which contains two JSON arrays; one is holding the column names which has 4 values and another array which contains 10,000+ record values. I am using Symfony and Propel; while using ...
4
votes
3answers
839 views

Symfony Insert SQL Error - a foreign key constraint fails

I am using fixtures to generate data for my symfony project, but for some reason the following error keeps getting thrown: Unable to execute INSERT statement. [wrapped: SQLSTATE[23000]: ...
4
votes
1answer
361 views

How to build self referencing tables in Symfony using Propel ORM

I have an error trying to build a model from an existing database in a symfony project using the Propel ORM. The error is this: build-propel.xml:474:20: The 1:1 relationship expressed by foreign ...
3
votes
2answers
137 views

Single SQL query to retrieve information and count from 3 tables with Propel 1.6

I have the following (simplified) database structure: table book id title table page id bookId number table figure id pageId page.bookId and figure.pageId are foreign keys pointing to the ...
3
votes
2answers
598 views

Propel and leftJoin

In Doctrine i can: $q = Doctrine_Query::create() ->from('One o') ->where('t.text = ?', 'aaa') ->andWhere('h.text = ?', 'bbb') ->leftJoin('o.Two t') ...
3
votes
2answers
678 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 ...
3
votes
3answers
5k views

Make all form validation errors show up at top in symfony?

I think I may be missing something here that should be relatively common. How can I make all form validation errors, including field-bound errors, show up at the top of the form (global)?
3
votes
1answer
2k views

Symfony Propel Query

I want to make this query on Symfony/Propel SELECT folders.NAME, COUNT(documents.NAME), COUNT(files.idfiles), SUM(files.size) FROM `folders` LEFT JOIN `documents_has_folders` ON ...
3
votes
2answers
3k views

How to do a “Select count…” with symfony and propel?

I'm trying to do a very simple sql query like this, to a propel Criteria : SELECT count(id_user) FROM myTable WHERE id_page = 5 I did'nt found informations on the documentation. Have you an idea ...
3
votes
2answers
406 views

Symfony/Propel 1.4: Read from one, write to other DB

We have an existing project (SNS website+android/Iphone games) in Symfony 1.4/ Propel 1.4 We are experiencing extra load on DB server (say DB1). We are doing DB Optimization but as immediate solution ...
3
votes
4answers
707 views

How do you do Unit Testing With an App that Uses an ORM?

I've looked through the various questions on unit testing but can't find one that specifically answers this question. I've got several PHP classes that contain functions that look like this: ...
3
votes
1answer
86 views

Why does propel convert float property to string?

I just noticed, that propel converts numeric values to strings in generated setter methods. My problem with that is, since I am using german locale, float values are insert with a comma instead of a ...
3
votes
1answer
129 views

PHP sf.1.4 Propel 1.6: memory leaking while looping results

I am working with symfony 1.4 + propel 1.6 and I want to export (index) all my user database to ElasticSearch. I have written all the script and everything is working okay, besides one problem. I ...
3
votes
2answers
640 views

Intergrating Zend Framework 2 and Propel

I've searched far and wide on how to intergrate propel and Zend Framework 2 however I haven't been able to come up with a solution yet. Here is what I have so far. Installed ZF2 Skeleton Directory ...
3
votes
1answer
410 views

PropelORM, Symfony 2 and Unit testing

I'm used to the habit of writing like this: $results = SomeModelQuery::create()->filterByFoo('bar')->find(); However this does not scale for unit testing because I can't inject a mock object, ...
3
votes
2answers
179 views

sfPropelPager only generates 5 pages

i'm working on a symfony project and needed to create a paging system for long lists. I used sfPropelPager plugin to generate them. I'm using it this way: I print all the pages in diferent ...
3
votes
1answer
915 views

Symfony Propel Pager - what is the proper way to send it a custom MySQL query?

Here is the query I need to run SELECT REPLACE(REPLACE(SUBSTRING_INDEX(LOWER(table.url), '/', 3), 'www.', ''), 'http://', '') AS domain FROM table GROUP BY domain But I'm having trouble passing ...
3
votes
3answers
3k views

How can I write a SQL count with group by clause using Propel ORM in Symfony?

How can I write the following SQL query using the Propel ORM? SELECT species, COUNT(*) FROM Bird GROUP BY species;
3
votes
3answers
326 views

Symfony2, Propel fixtures and concrete inheritance

I got an issue with Propel fixtures loading in Symfony2. I have the following schema: <table name="application" phpName="Application"> <column name="id" type="integer" required="true" ...
3
votes
1answer
249 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
2answers
428 views

Forms in Symfony2 with Propel?

I can't seem to find any documentation on Symfony2 forms when using Propel ORM. Is this even supported? When I run the console API it lists all propel commands and none of them was propel:build-forms. ...
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 ...
3
votes
2answers
3k views

How to use MySQL functions in Propel

I want to select records that are 1 month old or newer. The query is: SELECT * FROM foobar WHERE created_at > DATE_SUB(curdate(), INTERVAL 1 MONTH) Using Propel in Symfony, I do: $c = new ...
3
votes
2answers
185 views

How to make query after database trigger updates a column?

I have a sequence of insert, after insert trigger update, and query operations and my problem is that the data received from the query does not reflect the updates performed by the trigger (even ...
3
votes
1answer
140 views

Why would Propel not save this query, and also not give any errors?

I have a collection of tables like so: logbook, responsibility, user Responsibilities are reused - but only one distinct responsibility per logbook. Each responsibility has one user. A user can ...

1 2 3 4 5 14