0
votes
0answers
45 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
2answers
317 views

Symfony+Propel: Setting connection collation

I'm using Symfony 2.1.6 framework integrated with Propel 1.6.7 as database ORM through a MySQL Server 5.5.28 and I'm having problem to set database collation to utf8_unicode_ci. My ...
2
votes
1answer
249 views

propel-schema-reverse error : could not find driver

Just started working with php and propel. I am using Uniform Server (wamp server) and have db in mysql. I am getting following error while running 'propel-gen test reverse' propel > reverse: ...
1
vote
1answer
197 views

PropelORM with MySQL SPATIAL data type

I'm using PropelORM 1.6 and implementing some kind of GIS service for a project. In database (MySQL), for coordinates, I'm using field type of POINT to store the coordinates for diverse items. In ...
2
votes
2answers
818 views

Procedures of Oracle in php with PDO

I'm having a problem with propel 1.6 and a oracle procedure. I post it under PDO because I'm Propel just for proxying my call to PDO. Basically the procedure get the user name and password, checks ...
1
vote
1answer
148 views

Database-neutral table locking library for PHP

I have a scenario in which I think I need to lock a table against all activity (reads and writes). I am using Propel 1.6.x and intend to write a small extra library to handle the locking. My use case ...
2
votes
3answers
884 views

Invalid PDO query does not return an error

The second SQL statement below returns an error in phpMyAdmin: SET @num=2000040; INSERT INTO artikel( artikel_nr, lieferant_nr, bezeichnung_1, bezeichnung_1 ) SELECT @num := @num +1 AS anum, 70338, ...
1
vote
1answer
741 views

How do I get zend to recognize the paths to Propel ORM

I am trying to get Propel to work in my Zend app, it seems that I can get the Propel library to load (from library/propel) but when called I get the exception: 'No connection information in your ...
0
votes
1answer
137 views

PDO not reading config correctly

I'm not sure what the problem is here, I've inherited some code form Zend Framework and it's using Propel to make DB Queries. I've changed the config file to have the right values in it, username, ...
3
votes
2answers
688 views

Concurrency Problem

I'm having what seems to be a concurrency problem while using MySQL and PHP + Propel 1.3. Below is a small example of the "save" method of a Propel object. public function save(PropelPDO $con = null) ...