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
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
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 ...
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 = ...
2
votes
2answers
109 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 ...
3
votes
2answers
134 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 ...
1
vote
1answer
58 views

Chaining filterByXXX bug?

I have the following code: $somethingArray = array( 3, 4, 5 ); $myObjects = MyObjQuery::create() ->filterBySomething( $somethingArray ) ->filterById( array( 'min' => $minMyObjID ) ) ...
3
votes
2answers
238 views

nested SQL Statements with Propel?

I'm trying to translate a SQL Statement into Propel, without so much success. I have this SQL Statement: SELECT id, param1, param2 FROM Field1 WHERE id in ...
1
vote
1answer
459 views

How to get row count with a query using Propel 1.6's Custom SQL?

I have a project in Symfony2 using Propel ORM 1.6 and PostgreSQL. I'm trying to get the number of rows from a Query using Custom SQL as shown in this link in the following way: $con = ...
1
vote
2answers
251 views

Is Propel's fromArray/fromJSON feature safe from SQL injection?

The Propel ORM documentation mentions a neat import/export feature using functions like fromArray and fromJSON, that should allow something like this: $foo = new Widget(); $foo->fromArray($_POST); ...
2
votes
2answers
128 views

Sort WHERE IN SQL [duplicate]

Possible Duplicate: mysql custom sort I have an array of IDs: $ids = array(5, 1, 4, 2, 3); and I make a query: SELECT * FROM Persons WHERE id IN $ids and I receive this object: 1, ...
1
vote
1answer
432 views

Propel Custom criteria

I'm trying to build the following query with propel critiera: SELECT * FROM mytable WHERE facility_id IN (4,7) GROUP BY housing_id HAVING COUNT(DISTINCT facility_id) = 2; Propel Criteria: ...
2
votes
2answers
334 views

Propel ORM: How to use own brackets in where clause

i use propel for database interaction. Now i have to create a query like SELECT data FROM values WHERE a=1 AND (vis=1 or (vis=0 AND userID=5)); I create a propel object from the table "values". $p ...
1
vote
1answer
165 views

Propel - where and begins

I have table: Article: ID | TITLE | CONTENT 1 | aaa+s | sdsd 2 | ccc+a | sdsda 3 | aaa+s | dsdsd 4 | aaa+2 | sfsdf 5 | sds+2 | sadasds How to get all Article where title begins of aaa+ ? ...
1
vote
3answers
78 views

Require One of a Set of Fields in SQL

I have an entity, let's call 'machine', which has a group of entities from which it takes its name. At least one of these fields is required, but more than one can be set. So in the example below, if ...
0
votes
1answer
712 views

Use of Propel's addMultipleJoin

Following on from a previous question about sub-selects, I have an SQL statement with multiple criteria on the join, like so: SELECT * FROM person LEFT OUTER JOIN group_membership ON person.id = ...
1
vote
1answer
413 views

Rewriting Not In Sub-Select as Join for Propel

Given the following schema: person: id: ~ group: id: ~ group_membership: person_id: ~ group_id: ~ I am attempting to find members not within a certain group using Propel's Criteria, which ...
0
votes
1answer
166 views

Propel: need Criteria for the following SQL query

After half a day of headaches trying to figure out a double INNER JOIN, I finally got it right: SELECT product.id as product_id, count(purchase_vaucher.object_id) as purchased FROM purchase_vaucher ...
2
votes
1answer
428 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
0answers
912 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 ...
1
vote
2answers
762 views

Propel equivalent of “exists”

I am new to Propel and have been reading the documentation. But, I have not found a clear equivalent to the EXISTS and NOT EXISTS constructs from SQL. Linq in .NET, for instance, has Any(). Is ...
0
votes
1answer
128 views

Trying to use MAX(): “Fatal error: Undefined class constant”

$c = new Criteria(); $c->addSelectColumn('MAX('.Moto::matricula.')'); But i get this error: Fatal error: Undefined class constant 'matricula' in /opt/lampp/htdocs/ ...
0
votes
1answer
409 views

MySQL: Efficient Blobbing?

I'm dealing with blobs of up to - I estimate - about 100 kilo bytes in size. The data is compressed already. Storage engine: InnoDB on MySQL 5.1 Frontend: PHP (Symfony with Propel ORM) Some ...
1
vote
1answer
791 views

Propel ORM: Calculating Average of a column

I have a product object and I have rating Objects, which represent a rating about a product. A rating has a property named "value", which is an Integer from 1 to 5. For a given product I would like ...
1
vote
2answers
347 views

propel-gen insert-sql without losing data?

Is it possible to make propel-gen insert-sql without losing previous data? Is there any hack for this? I usually just add or remove some rows in a table editing schema.xml, executing: propel-gen ...
1
vote
3answers
204 views

What kind of SQL clause is this? Any way to convert it to SQL?

what kind of SQL is this? SELECT IFNULL(SUM(prenotazione.VALUTAZIONE),0) AS somma, COUNT(*) AS numero FROM `prenotazione` WHERE prenotazione.USER_ID=18793 AND prenotazione.PRENOTAZIONE_STATO_ID ...
0
votes
1answer
765 views

IF statement in Propel select criteria

I am trying to incorporate an IF statement into my propel criteria. This is the how I build up my criteria: $c = is_object($c) ? $c : new Criteria(); $c->addSelectColumn("CONCAT(DAYOFYEAR(" . ...
0
votes
4answers
1k views

Returning records from 3 tables via a Join Table with Propel in Symfony

I have 3 database tables: article article_has_tag (2 FK's to the other tables) tag I currently show a list of articles with the article's tags shown underneath but the number of queries grows as ...
0
votes
1answer
659 views

How to perform SQL query using Popel ORM in Symfony

Here is my problem, i'm trying to do tag cloud in symfony, what i want to perform is such a sql query select tag, count(tag) from tagi group by tag order by count(tag) desc limit 10 anyone can ...
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 ...
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;