0
votes
0answers
13 views

Propel PostgreSQL Migration unable to find adapter

I am trying to use migrations for the first time on my in-development Propel project (so I don't have to re-insert 15MB of data), but am having some difficulties. I made the changes in my schema and ...
1
vote
1answer
201 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 ...
1
vote
1answer
70 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
1answer
63 views

Propel generates 0 instead of false

I have a problem with my project and propel orm. When I use find() propel generate a query with 0 instead of false and my postgres give me an exception. Example: ...WHERE ...
3
votes
2answers
187 views

How to make query after database trigger updates a column?

I have a sequence of insert, after insert trigger update, and query operations and my problem is that the data received from the query does not reflect the updates performed by the trigger (even ...
1
vote
1answer
505 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 = ...
2
votes
2answers
229 views

PropelBundle database:create for postgres

I've installed propel bundle for symfony2. my database configuration is: propel: dbal: driver: pgsql user: postgres password: ...
0
votes
1answer
626 views

Propel custom Setter with SQL-specific stuff

I am using Propel 1.2 in a Symfony 1.0 project, with PostgreSQL db. I can use Criteria::CUSTOM in SELECT statements in order to use Postgres functions, like this (fulltext search): `$c = new ...