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

0
votes
0answers
15 views

How can I retrieve field in Propel?

I need to get the whole field 'username' from my DB. Can I do it with model class or Peer-class? There are many ways to solve that using Query-class, but command propel:build-model didn't create ...
1
vote
1answer
13 views

Complex clause in SQL JOIN in Propel 1.6

I have the following SQL statement: SELECT * FROM image LEFT JOIN history ON (image.id = history.image_id AND history.user_id = 1 WHERE active = 1 The purpose of the query is to find ALL the ...
0
votes
1answer
25 views

Debugging Query execution in PHP

I have this code: $room_chan = RoomChannelQuery::create() ->filterByChannel($hotel_channel->getChannel()) ->filterByRoom($res_room->getRoom()) ...
1
vote
1answer
60 views

FOSUserBundle extend propel User

I'm using FOSUserBundle and Propel in a Symfony 2.2 project. I'm trying to extend the User class and add a new method to it like so: namespace Acme\UserBundle\Model; use FOS\UserBundle\Propel\User ...
2
votes
1answer
33 views

Finding a specific row in a PropelCollection

I have two tables. One for orders, and for their prefs. The tables look like this: Order: +----------+---------------+------------+ | orderID | orderNumber | clientID | ...
0
votes
2answers
32 views

PHP include path ignored

At the moment i am facing a problem with the include path in php. For Propel to function correctly I need to add the build/classes directory to my include path as explained here: ...
1
vote
0answers
36 views

How do I get the children of a specific branch using Propel 1.6 Nested Set under Symfony2?

I have nested set table like this (partially shown): ROOT Boats ATV Sport Utility Youth Motorcycle Outboard Motors Side x Side Snowmobiles WaveRunners Generator I have Propel working under ...
0
votes
1answer
63 views

Symfony $form->save() inserts a row instead of updating it

I'm trying to figure why my form tries to insert a row instead of updating it, but I have no clue, here's the code: //This function is the one that displays the form public function ...
2
votes
1answer
40 views

Propel: Get Raw SQL from Query object?

How do I get the raw SQL statement from a query object in Propel? I need this for debugging purposes. For example: I would like to have a function as in $rawSql = new ...
0
votes
1answer
46 views

symfony 1.4 and propel - foreign constraints fails saved relation

I am working in a Symfony 1.4 project with Propel 1.4.2. I have 2 related tables. workshop and trainers which is a many to many relation mapped by a join table (workshop_trainers) which contains the ...
0
votes
1answer
33 views

Symfony2 & Propel: How to query objects ordered by their i18n column

Suppose my schema look something similar to the following - <?xml version="1.0" encoding="UTF-8" ?> <table name="vegetables" phpName="Vegetable"> <column name="id" type="integer" ...
2
votes
2answers
51 views

Prevent Propel from inserting empty strings

How can I prevent Propel ORM from inserting empty strings when a column is not set? CREATE TABLE user ( uid INTEGER PRIMARY KEY AUTO_INCREMENT, email VARCHAR(255) NOT NULL UNIQUE, -- No ...
2
votes
2answers
40 views

Select specific column(s) using Propel without aliasing

I'm having quite a bit of trouble rewriting a simple query using methods provided by Propel 1.6. The query is as follows: SELECT type_id, COUNT(id) as `count` FROM visit GROUP BY type_id; Using ...
0
votes
1answer
72 views

How to update multiple rows with different values using Propel ORM?

If I have an array of primary keys, and then another key value pair of titles: $article = array( array('Id' => 1, 'Title' => 'New Title'), array('Id' => 2, 'Title' => 'New Title2'), ...
0
votes
1answer
14 views

Propel behavior i18n and archivable

I am using propel and i set two behaviours onto one of my tables: <behavior name="archivable" /> <behavior name="i18n"> <parameter name="i18n_columns" value="name" /> ...
0
votes
1answer
51 views

Propel and symfony : Join Table doesn't work

Firstly I explain my issue : I have two tables Job and JobCategory : job: ------------------------------------------------- | id | category_job_id | job_name | keywords | ...
0
votes
0answers
33 views

propel could not find postgresql driver - wrong pdo version?

I can't get the propel script running on my system. My build.properties looks like this: propel.project = test # The Propel driver to use for generating SQL, etc. propel.database = pgsql # This ...
0
votes
1answer
51 views

Form in Form. Symfony

I use Symfony1.4 and Propel my application. I have a problem. For example: I have a database in which I want to keep authors and books. I make the following scheme: schema.yml book: id: ~ ...
2
votes
1answer
55 views

Propel ORM add many to many relation data in single save

I have a Post and category model have a relation on many to many with category_post table in real scenario i want to a add a post with multiple existing category id for Example post have ...
0
votes
0answers
21 views

Integrate symfony 1.4 model (propel) in wordpress

I have already developed the backend part for an application in Symfony 1.4 with Propel as ORM. The frontend is done in Wordpress. Is there any way to use model classes already made for backend in ...
0
votes
1answer
64 views

find query for many to many relation propel

i am new for propel . i face a problem to fetch all record form both table which have many to many relation . i have a user and group table. and a join table user_group. user and group have ...
0
votes
1answer
48 views

propel always select the default value of enum-columns?

I'm quite irritated at unterstanding Propel's handling of enum-columns (using Propel 1.6.9 and MySQL). It seems that it always returns the default values. The CREATE-Statement of the table: CREATE ...
1
vote
0answers
46 views

Validate a non-model attribute

Env: Symfony2.2 + Propel 1.6 I try to validate a 'customer' form which is linked to the model (Customer) to manage a "create account" (form 1) and a "login account" (form 2). The user is required to ...
0
votes
1answer
48 views

Multi row toJSON function using Propel and Backbone

I'm trying to make what should be a very simple "list all" function using Propel ORM - for Backbone.js to read. This is what I want to do, and in my opinion, should work: $users = ...
2
votes
1answer
49 views

“Duration” of elements on a Propel Instance Pool

I'm new in PHP, and also in Propel. As I have read, Propel got a Instance Pool, to reuse querys. For example <?php // first call $author1 = AuthorQuery::create()->getByFooField('foo'); ...
0
votes
2answers
54 views

Working with EAV model in Propel

I have a database with a EAV structure, having this tables : Entity (id, name) Attribute (id, name) AttributeValue(fk_id_entity, fk_id_attribute, value) What I want to do is translate this ...
0
votes
1answer
95 views

Propel multiple-parameter binding in where() clause

I'm trying to run this query on Propel 1.6 with symfony 1.4.20. I want to bind 2 parameters onto this subquery but its not working. $paginas = PaginaQuery::create() ...
3
votes
1answer
85 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 ...
0
votes
1answer
33 views

Generation Error

When executing: propel-gen om I receive the following error propel-gen: 22: propel-gen: Bad substitution. I've tried upgrading and downgrading Propel in an effort to resolve the issue.
2
votes
1answer
96 views

Propel ORM self referencing foreign keys

Im using Propel ORM and very new to Propel. I need some help selecting data from a table with a query I cant get right. Ive got a table like this (note: not actual table but same principal): ...
0
votes
1answer
31 views

how can i set isolation level with propel?

i use mysql, php on propel. i have used transaction row lock on mysql with native SQL query(e.g. SELECT FOR UPDATE). and now , I'm using propel to use ORM. but propel is not support row lock by ...
0
votes
1answer
139 views

Symfony 1.4 forms using Propel Object '<class here>' not Found

From this page: main_dev.php/player/new to (when I click submit): main_dev.php/player/edit/player_id/(no id) if I put an id here it displays fine. When I click the submit button (somehow it ...
0
votes
0answers
54 views

Propel foreign key reference to derived class in single table inheritance

I have this schema.xml in Propel 1.6: <table name="element" phpName="PageItem" abstract="true"> <!-- column declarations --> <column name="class_key" type="integer" ...
0
votes
2answers
77 views

Propel and related data using FOSUserbundle

I'm using FOSUserBundle and I've created a Message table with two columns, that are relating to the User from FOSUserBundle. I want to get messages and information about the author using one query. ...
1
vote
1answer
22 views

How to get Propel model generator to properly pluralize nouns?

I'm using Symfony 1.4 and Propel 1.6. I was confounded at first by various classnames that used improper pluralization. For example some table relations were things like CommerceItemss, which was ...
0
votes
1answer
42 views

Is Propel caching criteria when getting related objects?

I have a Propel 1.6 generated class Group that has Inits related to it, and Inits have Resps related to them. Pretty straightforward. I don't understand the difference between these two pieces of ...
1
vote
0answers
69 views

Different user types with different data

I got a project, to build a model agency cms. The backend and other parts are okay for me, what i am unexperienced with is the different users, and i am stuck with the logic. My logic would be this ...
0
votes
1answer
43 views

propel nested set behavior

I woudl like to build an oriented Graph using propel. The behavior I am looking for is similar to the nested set but with multiple parents for one child. What exists: P: Parent Node C: Child Node ...
1
vote
1answer
145 views

FOSUserBundle Propel

I used the FosUserBundle with Symfony2 (2.2) and the ORM Propel (1.6). I recently updated my project (sf2.1 => 2.2) and I have FOSUser problem with exception: UserQuery not found BaseUser not found ...
1
vote
1answer
142 views

How can I filter date-time columns by dates in Propel 1.6?

I would like to filter results as in $searchDate = "2013-03-01"; $query->usePublicationQuery() ->filterByPublishedAt($searchDate) ->endUse(); However, the problem ...
0
votes
1answer
50 views

“Call to a member function mergeWith() on a non-object” when using related queries

I'm having this situation with Propel 1.6 and a MySQL database: $query->usePublicationQuery("pq"); $query->condition('c1', '(YEAR(`pq.PUBLISHED_DATE`)) = ?', "2013") ...
1
vote
2answers
64 views

How do I properly extend an existing schema for Propel without corrupting version tables?

I wanted to add a column (IS_ACTIVE) to an existing table (Book). So I have extended the schema file (schema.xml) accordingly. I went through the following commands as described in the docs. ...
1
vote
1answer
133 views

Propel (PostgreSQL) syntax error at or near “.”

I have a database set up (work in progress with currently only two tables: user and email) and integrated with Propel. When registering a user I check to make sure that the email does not already ...
0
votes
0answers
44 views

How to customize the propel model form type using form theming

I'm using the propel model type and I'd like to display the generated input on a single line with the following input: Now I'm not sure how to make these customizations since using form theming, ...
0
votes
0answers
95 views

How to make twig render a form element with a different theme block from propel form types

I was trying to use the block_name attribute to select a different theme for a certain form input: $builder->add('titleFragments', new Form\DerivedType\SortableCollectionType(), array( ...
0
votes
1answer
78 views

How to get the next record that is greater than or equal to the current one in symfony? [duplicate]

Here's my code: $c = new Criteria(); $c->addAscendingOrderByColumn(ItemPeer::ITEM_DATE); $c->add(ItemPeer::ITEM_DATE, $item->getItemDate(), Criteria::GREATER_THAN); $this->next = ...
0
votes
1answer
75 views

How to retrieve the next item in a list of MySQL records?

I'm working with symfony using Propel trying to create functionality for back and next buttons: $c = new Criteria(); $c->add(CartPeer::CATEGORY, $category); $c->add(CartPeer::ITEM_ID, ...
0
votes
1answer
69 views

PropelParamConverter not working

Can someone please tell me how to make PropelParamConverter work for a Symfony2 project? I already have the 'SensioFrameworkExtraBundle' bundle installed and working for the implicit case (without the ...
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. ...
0
votes
1answer
37 views

Wiki-style links. How to change color of links if the destination page doesn't exist

I have model WikiPage. WikiPage->text I get from database. I made method "wikify " and generate text on page by class::wikify($Page->getText()). In text I have construction [link name], I generate ...

1 2 3 4 5 14