Closed m-ochyra closed 11 months ago
I know this is an old question, but I had this myself, and this exception is thrown because Doctrine\DBAL doesn't support Firebird DBMS. As you can see here, it supports MySQL, Sqlite, Postgres, many others but not Firebird(which is not that suprising given it has little popularity).
If you plan to use it often, you can take a look at how these drivers(eg. for Oracle) are built and create one for Firebird but I'm afraid it might not be an easy task.
@jacquestvanzuydam One thing you can do for now is add the Firebird\Connection::getDoctrineDriver()
method looking something like this:
protected function getDoctrineDriver()
{
throw new \Exception("Firebird is not supported by Doctrine");
}
to give a clearer feedback.
I have problem with generating helper with Laravel 5 IDE Helper Generator. I created second connection to Firebird database and model:
Next when I run command
php artisan ide-helper:models
have this error:Connection with Firebird database and model is OK.
Full log message: