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.
0
votes
0answers
35 views
filterByTableA()->_or()->filterByTableB() returns no match if all rows are given
I've got 3 Tables:
Contact (id, name, street, city)
Vendor (id, bank_account)
Customer (id, customer_number)
Both tables, Customer and Vendor, have a foreign key to Contact.
N table of Contacts ...
0
votes
1answer
145 views
Set the default propel connection for entire php process
Propel 1.6 and Symfony 1.4
I'm looking for a way to programmatically set the default propel connection for the length of an entire php process. The issue is that I'm using an alternative db for ...
1
vote
2answers
384 views
Warning: require_once(phing/BuildException.php): failed to open stream
I'm new using Zend Framework 1.11 and Propel ORM together, and I get stuck on a very simple case. Here is the error on the url http://fle.localhost/domain :
Warning: ...
0
votes
0answers
83 views
Setup Propel to default to connection created, PropelQuickBuilder, Sqlite in memory db
Major kudos if anyone can actually lead me in the right direction here... So, some backstory.
I'm setting up PHPUnit within a Symfony 1 project. I've gotten everything setup, and it's mostly ...
0
votes
1answer
71 views
SQL to Criteria using propel
I have this sql:
SELECT link.ID, link.URL, link.ANCHOR, link.HOME, link.CREATED_AT
FROM `link`, `linkcategory`
WHERE link.ID=linkcategory.LINK_ID
GROUP BY linkcategory.LINK_ID
HAVING ...
1
vote
2answers
173 views
Create Project Log(History) Module in symfony with event dispatchers
I'm developing a project management tool in Symfony, right now I'm creating a module to recording the logs i.e, to capture every event like New project create, task create, task status changes, ...
3
votes
1answer
139 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 ...
2
votes
1answer
120 views
How to retrieve rows that has all features using Propel?
I am working on project which is in symfony 1.0
I have problem in creating propel query.
I have two table
car
id name
1 a
2 b
3 c
feature
id car_id feature
1 2 ...
1
vote
1answer
299 views
Propel compare between dates
my code validates two possible variables, year and category.
If $_GET['category'] is defined, search posts of the category for the current year.
If $_GET['year'] is defined, search posts of all ...
0
votes
2answers
356 views
SelfJoin using Symfony 1.4/propel 1.4
I need to do self join using Symfony 1.4/Propel 1.4. My tables/db are too big to put here but an example table is given below to replicate the issue I'm facing.
Consider following example table with ...
0
votes
2answers
100 views
Join statement for multiple values
This is something that really bugs me, but first the code, then the question:
<?php
public static function retrievePagerByTagArray($page, $limit, $tags) {
$criteria = new Criteria();
...
-1
votes
1answer
107 views
Propel Criteria
I'm trying to create the following statement using Criteria and Propel:
AND unix_timestamp(table.last_action) > unix_timestamp(table.last_action) -1800
But i don't seem to be able to get it ...
-1
votes
1answer
52 views
OR sentence example in PROPEL
im learning about propel, in documentation i found examples about WHERE/AND WHERE/IN but i cant found examples for WHERE/OR. How i can make this SQL in propel?
SELECT * FROM `users` WHERE ...
0
votes
1answer
85 views
Caching Symfony custom model class method
I have created a method that takes in a string value, matches it with the user records and returns the matching user's record.
My code:
class UsersPeer extends BaseUsersPeer
{
public static ...
1
vote
1answer
76 views
No Base and Custom forms in symfony2?
We had this concept of baseform and custom form in symfony 1.4. In symfony2, I believe this concept is dropped. I am using propel:form:generate to generate forms, am I supposed to make modifications ...
1
vote
1answer
134 views
overriding propel.xml file from FOSUserBundle
I am extending FOSUserBundle for my project, But i dont want the email field to be a unique one, so extended the schema.xml to removed the unique tag from the xml and built the models accordingly. But ...
4
votes
4answers
263 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 ...
0
votes
1answer
83 views
Inject custom form generator for symfony 2.0
When I am creating a form with propel:form:generate command, it executes FormGenerateCommand.php from propel bundle, How can I extend this bundle or make it to execute my custom form generator?
0
votes
1answer
191 views
Performance impact of not closing propel connection
I'm using symfony 1.4/propel 1.4 for a project, which was made by other developer earlier. On that project, propel connection is taken by using following code
$con = ...
-1
votes
2answers
673 views
symfony 1.4 propel 1.6 : sum
I'm trying to get a sum of columns in propel. My code
$c = new Criteria();
$c->add(valuePeer::OWNER_ID, $this->getId());
$c->addSelectColumn('SUM(' . valuePeer::VALUE . ') as total');
...
0
votes
1answer
100 views
Propel returns different output for the same query with same table
I have propel query
$articles = ArticlesQuery::create()->find();
var_dump($articles);
exit;
which queries the article table (id, users_id, article_category_id, images_id, title, body, approved, ...
0
votes
1answer
448 views
Update multiple rows with Propel 1.4
I need to execute following query (Using Propel 1.4/Symfony 1.4)
update notification
set read=1
where to=6 AND
action=0
For this, I wrote following code in symfony 1.4
$c=new Criteria()
...
3
votes
1answer
181 views
What's the most correct way around this propel “Cannot redeclare function” error?
I have the following tables:
user, logbook, user_logbook
User logbook is a junction table (isCrossRef="true" in the schema.xml), containing user_id and logbook_id foreign keys.
I also wanted to ...
2
votes
1answer
899 views
Propel Criteria::setLimit() like LIMIT 0,6
In my query using Symfony 1.4/Propel 1.4, for pagination purpose, I need to set limit like
Page1: LIMIT 0,6
Page2: LIMIT 6,6
Page3: LIMIT 12,6
.... & so on
I try
$c->setLimit(6);
Which is ...
2
votes
2answers
337 views
How to get object by “id” from propel object collection?
I'm using Propel 1.6 and I'm not sure how to get an object (given its "id" attribute value) from a propel object collection. I could not find a straight answer in Propel's documentation ...
0
votes
0answers
37 views
Schema fkRefPhpName, getRelation() error
I have such a piece of yml code here:
photo:
id: ~
name: { type: varchar(255), required: true}
main_photo: { type: boolean }
description: ...
0
votes
1answer
48 views
Issue with Propel Criteria::IN
I'm trying as add following condition in my query
AND momento_distribution.MOMENTO_IDMEMBER IN ( 5, 1, 3, 10, 11, 12, 18, 32, 51, 6 )
For that, I'm having following code
...
2
votes
1answer
140 views
Correct MVC design for Symfony/Propel?
If making things work is only requirement, we can put all controlling login and DB handling logic even in the views & it will work. However this is not a right approach for reusable design.
...
0
votes
1answer
247 views
symfony propel : wrongly populated object with criteria addJoin
This is my first question here, so please try to be patient with me :)
I've stumbled upon a weird behavior populating an object.
I started to convert the objectQuery::create()-> ... ->find() ...
0
votes
1answer
188 views
Join query exception in Symfony 1.4.11/Propel 1.4.2
I need to run following query:
SELECT
m.TITLE,
m.MOMENTOIMAGE,
s.CREATED_AT,
s.UNREAD,
mem.FIRSTNAME,
mem.LASTNAME,
mem.MEMBER_PHOTO,
mem.ID
FROM ...
0
votes
1answer
316 views
Join query Symfony 1.4.11/Propel 1.4.2
I've following query to execute
SELECT m.*, s.momento_idmember, sd.id_send, d.momento_id
FROM `momento_send` s,
`send_distribution` sd,
`momento_distribution` d,
`momento` m
WHERE
...
0
votes
0answers
107 views
Symfony 1.4 Propel - duplicate declarations for same class - sfAutoload error?
I get this error why I try to sort the results from a basic admin-generated list on backend:
Never had this problem again:
( ! ) Fatal error: Cannot redeclare class BasePhotoPeer in
...
0
votes
2answers
618 views
How do the symfony required option work?
I don't know why, but I remembered that when you have a symfony form with required fields not rendered, the isValid function do not check for them.
I mean it only check if the widget got a value when ...
0
votes
2answers
178 views
Propel version with symfony 1.4.11
I went through few post but didn't find an answer to probably one of most simple questions. What is the standard Propel version that comes bundled with symfony 1.4.11?
In one answer, I found a ...
1
vote
1answer
396 views
Propel or Doctrine; which is better ORM for Symfony 1.4 [closed]
I've live project experience with CodeIgniter and Cake PHP. However now I need to work on a huge project for which both are unsuitable. I'm nearly decided to go with symfony 1.4 (2.0 isn't an option, ...
1
vote
1answer
363 views
Symfony2 forms: How to deal with many to many “self-referencing” relationships of the type “parent/child”?
I'm using Symfony2 forms and have not been able to find out how to embed an intermediate class form that allows for creating a many to many "self-referencing" relationship of the type "parent/child". ...
1
vote
1answer
64 views
How to get the sum of elements from a request with Propel?
I'm trying to get the sum of variables contained in my object, and I don't know how to do it. I know it's not very clear, so here is an example.
I'm doing a request to obtain all discounts from one ...
1
vote
1answer
199 views
Propel ORM Behavior for defining Parent Child relationships?
I'm using Symfony2 with PropelBundle, and lets say I have the following schema:
<table name="person">
<column name="id" type="INTEGER" primaryKey="true" autoIncrement="true" ...
0
votes
1answer
286 views
Why aren't these propel many-to-many relationships working?
I am following this documentation: http://www.propelorm.org/documentation/04-relationships.html#manytomany_relationships
I have a very similar set up (albeit a little simplified for readability):
...
2
votes
1answer
234 views
Symfony 1.4 Propel optimization
I'm new to Symfony and take over Symfony 1.4 (Propel ORM) project in the company from someone who resigned with immediate effect.
I went through jobeet tutorial and generally comfortable to Symfony. ...
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 ...
0
votes
1answer
245 views
Symfony2: SecurityExtension::addUserProviderFactory() and PropelBundle
I am currently migrating a Symfony2 website and I got an issue I am not able to fix.
The error message I got is:
Fatal error: Call to undefined method
...
1
vote
1answer
51 views
Setting up a propel workspace
I'm trying to setup propel for the first time but I can't seem to get it configured right.
My workspace is like so:
/var/www/prod/[project_name]/www
/var/www/dev/propel
...
2
votes
1answer
3k views
How to add an autocomplete field in a Symfony2 form for a collection and using Propel?
I'm using Symfony 2.1 forms with PropelBundle and I'm trying to refactor a form that had a drop-down list of objects (to select from) to instead use a jquery autocomplete field (working with AJAX). ...
0
votes
1answer
30 views
DDL - can't use delimiter?
I'm trying to create some database triggers post database created, by adding them to a sql file that is called from sqldb.map.
However, to create triggers, I need to use the delimiter command to ...
0
votes
1answer
98 views
PropelORMPlugin and “object_actions”?
I'm porting an older Propel and Symfony application that has this form code:
generator:
class: sfPropelGenerator
param:
model_class: UserForm
theme: default
...
0
votes
2answers
124 views
How to force refetch of association results in Propel (also Doctrine) - Symfony 1.4?
I have 2 entities: Parent with one-to-many relationship with Child.
I use the $parent->getChilds() automatically generated method by Propel to fetch all the childs.
Afterwards I manually add (or ...
3
votes
3answers
323 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" ...
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
342 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 ...