2
votes
1answer
30 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
30 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: ...
0
votes
1answer
60 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
37 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 ...
2
votes
2answers
48 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
36 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
59 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
44 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 ...
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
53 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 ...
3
votes
1answer
75 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
91 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
28 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
129 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 ...
1
vote
1answer
20 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
41 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
68 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 ...
1
vote
1answer
136 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 ...
1
vote
1answer
125 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
1answer
76 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
74 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
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 ...
0
votes
0answers
36 views

Propel using where with SUBSTRING

why does this no work? $allRecords = RecordsQuery::create() ->where('SUBSTR(Records.paymentTime, 1, 7) = ?', '2013-02') ->findOne(); // var_dump($allRecords); it just gives back null. If i ...
0
votes
0answers
86 views

How to pass a custom query to the sfPager for getting pagination?

Below is the sql query. Here 3 tables are used. EMPLOYER, COMPANYPROFILE,JOBSEEKERFOLLOWER $c=new Criteria(); $c->add(EmployerPeer::ITEMPLOYERSTATUS, 1); $c->addJoin(EmployerPeer::IDEMPLOYER, ...
0
votes
1answer
54 views

How to create route with different modules with same name?

I have 2 different models: category and page. My schema.yml: propel: wiki_category: id: ~ address: { type: varchar(255) } name: { type: varchar(255), required: ...
1
vote
1answer
88 views

Why is my propel cascade blocked by foreign key constraints?

I have the following structure in the databse: In my code I first create a Company, then a logbook, then a number of schedules, then a user, then a logbook responsibility. Sort of like this (not ...
0
votes
1answer
155 views

How to make Criteria on SELECT CASE in Symfony 1.4 Propel

I am looking a way to make Criteria based on this SQL in Symfony 1.4: SELECT item.position, CASE WHEN item.position = 1 THEN item.position + 1 WHEN item.position = 2 THEN item.position - 1 ...
1
vote
1answer
62 views

Capturing SQL notices from Propel ORM

I have a large SQL function that I want to execute on a PostgreSQL database via PHP/Propel using a prepared statement like so: $sql = "lots of SQL statements"; $statement = ...
0
votes
1answer
36 views

Need to install propel_generator version 1.3.5

I need to install propel_generator version 1.3.5 on my machine. I tried to install it using PEAR via: pear install propel/propel_generator-1.3.5 but it failed with the following message: Failed to ...
2
votes
1answer
94 views

Foreign key to a remote database with Propel

I have a question about foreign keys in propel. I have got 2 schemas in my project that match to 2 physical databases: my local one (DB One) and a remote DB with some read only information (DB Two) ...
3
votes
1answer
120 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 ...
0
votes
0answers
44 views

Insert row in table error in propel and PFBC 3.1

The First row has been successfully insert, no errors and warnings. But now I need to enter second row, but I got this error on execution >Fatal error: Uncaught exception 'PDOException' with ...
0
votes
2answers
117 views

Symfony2 commit form using Doctrine - MappingException

I have created a form using Propel which submits fine, and validates. The problem comes when I try to commit the $user object - I get a MappingException. I really have no idea where this is coming ...
0
votes
1answer
100 views

Validation Process error in propel and PFBC 3.1

I am using Propel and PFBC(php From Builder class). I wrote the validations in xml file using propel php orm (Database) now I want to use them when login button is clicked. It means I want to check ...
2
votes
2answers
108 views

Multiple parameters in where clause

I need to append multiple parameters for where clause. Is there any way to achieve that using Propel. It gives me, Criteria:(Error: Could not build SQL for expression "LATITUDE" because ...
1
vote
2answers
50 views

What security is Propel providing?

Im using the Propel framework, for communication with a database. I figured that it's using PDO and makes a bindParam(), when I try to make an input, so SQL injections should be covered. But does it ...
0
votes
1answer
64 views

propel DOMDocument::schemaValidate(): Element 'foreign-key', attribute 'ondelete','onupdate','skipsql' The attribute is not allowing?

I am using propel PHP: The foreign key attries are not getting depended on the parent table. The Creations, updates, deletes are taken place in parent is not effecting the child table. foreign-key ...
0
votes
2answers
136 views

Converting Propel to JSON with linked entities

I have this setup in a PHP project using Propel (which I'm new to). User: userid, firstname, lastname SignIn: signinid, userid, time SignIn, in this case, is a table containing the times ...
0
votes
2answers
126 views

Propel timestampable behavior in UTC

I am using Propel 1.6 with MySql. I set the timestampable behavior on all my tables as follows: <database name="default" > <behavior name="timestampable"> <parameter ...
0
votes
1answer
86 views

why the symfony admin generator is giving error while trying to save the content

I am using symfony 1.0 and admin generator is used for saving the news content. In configuration.yml file I see the below content: generator: class: sfPropelAdminGenerator param: ...
0
votes
1answer
136 views

Working with SQL Joins in Propel ORM

I am working with a Propel query that is similar to the situation below. Can someone explain what joinSubTopic() is? I'm guessing this is an auto-generated Propel method, but I'm not quite sure how to ...
0
votes
1answer
199 views

using many-to-many relationship causes exceptions

After some ORM framework research, I decided to use propel for the first time. Everything worked perfectly until I started to work on a many-to-many relationship for the caching mechanism. After ...
1
vote
2answers
285 views

Large data set import in Symfony 2

I'm working on a Symfony 2 based project and need to regularly import 1.5 million products from a .csv document using a cron task. The import currently looks like this: ... ...
0
votes
1answer
109 views

Bulk Update in Symfony using Propel

How can I do a bulk update in symfony using propel when my select criteria has joins in them? Here's an example of what I am trying to do. $conn = ...
0
votes
1answer
50 views

Model not being autoloaded in symfony 1.3

I have a table in my database called student, and when I try using StudentPeer::retreiveByPk($stid) I get a fatal error saying Call to undefined method StudentPeer::retreiveByPk Is there a ...
0
votes
0answers
79 views

Propel 1.6.7 and column names like `from` or `to`

In my code I got a something like this: ->withColumn('TableName.From', '`from`') and of course to fetch this column I have to call method "select" like this ->select(array('alias1', ...., ...
0
votes
1answer
130 views

Symfony 1.4 & Propel 1.6: populateRelation() one-to-may on a related table

I love the way populateRelation works, but in this particular case I really got stuk! The schema is very simple: event id title user_id user id name user_tag id tag user_tag_rel ...
0
votes
1answer
73 views

Grouping filters in Propel

I currently have a Propel based query that looks like this: $product = ProductQuery::create() ->filterByLive(1) ->filterByApproved(1) ->findOneByFilename($filename); I regularly use ...

1 2 3 4 5 8