Symfony 2 ve doktrin 2 özel sql günlüğünü nasıl yapılır?

0 Cevap php

I need to add sql logging to work in native WebProfileBundle. When I do one default connection in application config, I see the sql queries in my log. But my application uses many connections to many db servers, so I can't add all the possible connections to config file.

Ben zamanı bağlantıları oluşturmak, yani:

$config = array(
        'user' => 'user1',
        'password' => 'pass1',
        'driver' => 'pdo_mysql',
        'port' => 3306,
);
$conn = DriverManager::getConnection($config);

sonra düşünüyorum, böyle bir komut bir şey olmalı

$conn->getConfiguration()->getSQLLogger($someLoggerObject);

I've tried to solve this problem with DependencyInjection, took DoctrineBundle as example. But have no luck.

Uygun dokümantasyon canlı kodu veya bağlantı ile herhangi bir yardım büyük olurdu

0 Cevap