Tagged Questions

Open Source ORM for PHP5.

learn more… | top users | synonyms

31
votes
7answers
12k 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 ...
10
votes
2answers
1k 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 ...
6
votes
4answers
474 views

sfguard bundle for symfony2

There is a bundle for (Propel) for symfony2,is there sfguard bundle for symfony2
6
votes
4answers
231 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
1k 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 ...
6
votes
2answers
6k 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?
5
votes
3answers
207 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 ...
5
votes
5answers
7k 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 ...
4
votes
3answers
454 views

RedBean ORM perfomance

i would like to know that does redbean orm can be used for perfomance oriented scenarios like social networking web apps and does it stand stable even if more than thousands of data is pulled by a ...
4
votes
3answers
391 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
2answers
1k 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 ...
4
votes
9answers
331 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 ...
3
votes
3answers
48 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 ...
3
votes
1answer
75 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) ...
3
votes
1answer
154 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
125 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
1answer
187 views

Does embedRelation() (sfPropel15Plugin) works for many-to-many relationships?

does embedRelation() (sfPropel15Plugin) works for many-to-many relationships? If not any experience or tutorial to get that (embed forms for m:m relations)? Regards Javi
3
votes
1answer
93 views

foreign-key on a table not in the database, with ORM

I have a static table entry that's shared by several databases/website. By static, I mean the data is read but never updated by the websites. Currently, all websites are served from the same server ...
3
votes
1answer
130 views

Best MySQL setup for rapidly changing big text fields?

I am trying to optimize a MySQL database for a table with the following characteristics. Any idea? (storage engine, etc.) The table: ca. 10,000 rows each row contains one big text field, sized: ...
3
votes
1answer
701 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
2answers
1k 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?
3
votes
2answers
414 views

Concurrency Problem

I'm having what seems to be a concurrency problem while using MySQL and PHP + Propel 1.3. Below is a small example of the "save" method of a Propel object. public function save(PropelPDO $con = null) ...
3
votes
3answers
2k 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;
2
votes
2answers
60 views

Force database flush using Propel

Here is an example of my tables <table name="user"> <column name="name" type="varchar" size="255" required="true" /> </table> <table name="environment"> <column ...
2
votes
1answer
58 views

Using Sphinx Search with an ORM

I'm looking at implementing Sphinx search within our site. Rather than having to do strange things with including new libraries etc, it makes more sense to me to integrate it using SphinxQL, as this ...
2
votes
2answers
77 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. ...
2
votes
2answers
106 views

Procedures of Oracle in php with PDO

I'm having a problem with propel 1.6 and a oracle procedure. I post it under PDO because I'm Propel just for proxying my call to PDO. Basically the procedure get the user name and password, checks ...
2
votes
2answers
51 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 ...
2
votes
2answers
94 views

Export large rows to Excel document, in small memory footprint

I am using PHPExcel to create an Excel document, using data from a MySQL database. My script must execute in under 512MB of RAM, and I am running into trouble as my export reaches 200k records: ...
2
votes
1answer
70 views

Capture initial copy of Propel objects in doSelect

I am using Propel 1.6 and have a need to version all tables in a particular database. I have a number of tables, each having a versionable table defined in the schema (so table 'role' has a table ...
2
votes
1answer
168 views

Propel 1.6, Phing, Windows 7 - How to set this up?

I am trying to get the "propel-gen reverse" command working, but just can't seem to get the setup right. Right out of the box, I get this error: ... generator/bin/propel-gen: line 69: phing: ...
2
votes
1answer
84 views

propel:data-dump outputs only rows where self-referential fk is null - how to work around?

Am using Symfony 1.4 and Propel 1.6. I have a table representing an object where one may record may relate to one other record in the table (Think outbound / inbound routes). The key of second half of ...
2
votes
2answers
210 views

Symfony/propel form saving an object with additional properties

First, let me say, that I find the sfFormPropel form's interface inconsistent. There is bind(), which returns nothing, but triggers validation, save() which returns the saved object, and ...
2
votes
2answers
52 views

Naming Generated Functions in Propel

The ideo of cross-reference tables is introduced in Propel 1.5. This means that an entity can get a list of related items as if it were a one-to-many relation. So in a person-to-groups relationship, a ...
2
votes
1answer
78 views

How do I use the OR statement in a Propel query using Symfony

Right now the code below looks for the author_id and the target_object_id in the database and requires both to match, to be retreived by the query. I would like it to be WHERE author_id='x' || ...
2
votes
1answer
274 views

Indexing Related Entities Using Zend Lucene

I have set up search in my application, but wish to expand it to index properties related in a one-to-many way. For instance, a person can have many usernames, so they have to be kept separate, as in ...
2
votes
2answers
182 views

Propel Data Load - “default” context does not exist

I am currently stuck on the error The "default" context does not exist. when trying to build my data model with the command symfony propel:build --application=frontend --all --and-load ...
2
votes
1answer
154 views

Binary OR not working in Symfony Propel Criteria

I am using Symfony 1.4 and Propel(ORM), i want to execute SQL query (SELECT * FROM 'myblog' WHERE 'blog_title' LIKE '%symfony%' OR 'blog_post' LIKE '%symfony%') want to get all the records from myblog ...
2
votes
1answer
154 views

Invalid PDO query does not return an error

The second SQL statement below returns an error in phpMyAdmin: SET @num=2000040; INSERT INTO artikel( artikel_nr, lieferant_nr, bezeichnung_1, bezeichnung_1 ) SELECT @num := @num +1 AS anum, 70338, ...
2
votes
1answer
119 views

Propel: Concatenate text and field content

I am currently refactoring some stuff to use Propel. We currently have a function that adds text to a "history" field like this: UPDATE tablename SET history = CONCAT(history, NOW(), "add this ...
2
votes
2answers
94 views

One view for two models: use a base model class to make it easier?

I am having this scenario: A website for managing hotels. Another kind of Hotel model has been added over the course of the project, so now they are two. Now the boss wants the list of Hotels to ...
2
votes
1answer
274 views

Symfony 1.4.11 & Propel: time format problem in fixtures file

I've got a problem: I have a schema.yml which contains a field with the type "time": time_space: { type: time, required: true } For my initial data, I have a fixture file which contains a ...
2
votes
1answer
236 views

mysql to Criteria() in symfony 1.4.9

I have the following complex query in mySQL SELECT courseId,courseName FROM course WHERE courseId NOT IN (SELECT courseId FROM coursestaken NATURAL JOIN student WHERE grade >= 60 AND studentId ...
2
votes
3answers
343 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 ...
2
votes
3answers
222 views

Zend with existing Propel ORM

I'm working on converting a rather large (but somewhat simple) app from Symfony to Zend, large because of the DB. This is also my first Zend project, but it seems to be going well so far. The app is ...
2
votes
1answer
530 views

Installing PEAR on XAMPP

Attempting to install propel with PEAR on XAMPP. This is the error I get when attempting to: pear install -a propel/propel_generator ERROR: failed to mkdir ...
2
votes
2answers
407 views

Symfony - search table by month, year for datetime fields

I am trying to create an search filter on a frontend module, that will filter by 2 fields, which are months and years I have items in my db table, that have a datetime field. I'd like to be able to ...
2
votes
3answers
264 views

Getting ResultSet column names

I'm using Symfony 1.1 with the Propel plugin and a MySQL database. To get my results I pass my query to a Propel connection and call executeQuery(). I'm trying to retrieve the column names of my ...
2
votes
1answer
95 views

Propel and build.properties file

Whenever I run propel-gen on a clean database (no tables defined), it generates errors because it first tries to DROP a table (Which doesnt currently exist) before creating it. Is there any ...
2
votes
1answer
159 views

Propel: Aggregate columns with nested sets… how?

I'm sure I'm missing something as this seems like something that should be simple to do using the nested_set behavior. I have listings which sit in multiple categories. The categories are managed ...

1 2 3 4 5 8