• Custom SQL queries in symfony 1.4 with Propel

    The solution is quite simple, use PDO directly. All the information that you need is in the pdo php page $connection = Propel::getConnection(); $sql = "YOUR SQL QUERY"; $statement = $connection->prepare($sql); $statement->execute(); while($result = $statement->fetch(PDO::FETCH_ASSOC)) { // do something } greetings