yii2-firebird This extension adds Firebird database engine extension for the Yii framework 2.0.

Firebird Extension for Yii 2

  1. Requirements
  2. Installation
  3. Configuration

This extension adds Firebird database engine extension for the Yii framework 2.0.

Build Status

Requirements

At least Firebird version 2.0 is required. However, in order to use all extension features.

Not use BLOB types. See this bug

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist edgardmessias/yii2-firebird

or add

"edgardmessias/yii2-firebird": "*"

to the require section of your composer.json.

Configuration

To use this extension, simply add the following code in your application configuration:

return [
    //....
    'components' => [
        'db' => [
            'class' => 'edgardmessias\db\firebird\Connection',
            'dsn' => 'firebird:dbname=tests/data/TEST.FDB',
            'username' => 'username',
            'password' => 'password',
        ],
    ],
];
1 0
4 followers
0 downloads
Yii Version: 2.0
License: BSD-2-Clause
Category: Database
Developed by: Edgard Messias
Created on: Jul 8, 2015
Last updated: 8 years ago

Related Extensions