Hi! I want to test my application using PHPUnit/DbUnit. So I tried to pass the database connection created by FuelPHP to PHPUnit, but Database_Connection won't give me the raw connection instance. Any ideas how to get this working?
Calling connection() on the Database_Connection instance would give you the underlying driver (PDO, MySQLi, etc) instance. Or do you mean something else?