dev-master
9999999-dev http://github.com/srusakov/yii2-firebirddbYii 2 Firebird DB driver
BSD-3-Clause
The Requires
- php >=5.4.0
database yii2 driver firebird
Wallogit.com
2017 © Pedro Peláez
Yii 2 Firebird DB driver
This is an updated version of the adapter YiiFirebird originally posted by idlesign. It has been enhanced to be compatible with yii2., (*1)
This version is marked 2.0, (*2)
...
"require": {
"srusakov/firebirddb": "*"
},
"repositories":[{
"type":"git",
"url":"http://github.com/srusakov/yii2-firebirddb",
}]
...
return [
'components' => [
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'firebird:dbname=HOSTNAME:DATABASENAME.fdb;charset=UTF8',
'username' => 'sysdba',
'password' => 'masterkey',
'charset' => 'utf8',
'pdoClass' => 'srusakov\firebirddb\PDO',
'schemaMap' => [
'firebird' => 'srusakov\firebirddb\Schema', // FireBird
],
],
]
Some restrictions imposed by Database: * Rename tables * Using DDL and DML statement in the same transaction and the same table. (Ex: Create table and insert)., (*3)
This driver is not well tested in production ebvironment! Use it at your own risk!, (*4)
@idlesign, @robregonm, @edgardmessias, @mr-rfh, @mlorentz75, (*5)
Yii 2 Firebird DB driver
BSD-3-Clause
database yii2 driver firebird