Showing posts with label execute raw query with doctrine. Show all posts
Showing posts with label execute raw query with doctrine. Show all posts

symfony execute raw query with doctrine

$query = ‘INSERT INTO table_name (`field1`, `field2 `, `content`, `created_at`) values ‘ ….

$conn = Doctrine_Manager::connection();
$pdo = $conn->execute($query);