Para descargar: http://www.yiiframew...&attach_id=2576
Espero que sea de ayuda.
Saludos y éxitos.
Posted 20 February 2012 - 09:52 PM
Posted 20 February 2012 - 09:53 PM
Posted 20 February 2012 - 09:55 PM
Posted 23 February 2012 - 02:13 AM
robregonm, on 20 February 2012 - 09:55 PM, said:
Posted 28 February 2012 - 12:53 PM
'CFirebirdColumnSchema' => '/db/schema/firebird/CFirebirdColumnSchema.php', 'CFirebirdCommandBuilder' => '/db/schema/firebird/CFirebirdCommandBuilder.php', 'CFirebirdPdoAdapter' => '/db/schema/firebird/CFirebirdPdoAdapter.php', 'CFirebirdSchema' => '/db/schema/firebird/CFirebirdSchema.php', 'CFirebirdTableSchema' => '/db/schema/firebird/CFirebirdTableSchema.php',
'CDbTableSchema' => '/db/schema/CDbTableSchema.php',
protected function createPdoInstance()
{
$pdoClass='PDO';
if(($pos=strpos($this->connectionString,':'))!==false)
{
$driver=strtolower(substr($this->connectionString,0,$pos));
if($driver==='mssql' || $driver==='dblib')
$pdoClass='CMssqlPdoAdapter';
if($driver==='firebird')
$pdoClass='CFirebirdPdoAdapter';
}
return new $pdoClass($this->connectionString,$this->username,
$this->password,$this->_attributes);
}
public $driverMap=array( 'pgsql'=>'CPgsqlSchema', // PostgreSQL 'mysqli'=>'CMysqlSchema', // MySQL 'mysql'=>'CMysqlSchema', // MySQL 'sqlite'=>'CSqliteSchema', // sqlite 3 'sqlite2'=>'CSqliteSchema', // sqlite 2 'mssql'=>'CMssqlSchema', // Mssql driver on windows hosts 'dblib'=>'CMssqlSchema', // dblib drivers on linux (and maybe others os) hosts 'sqlsrv'=>'CMssqlSchema', // Mssql 'oci'=>'COciSchema', // Oracle driver 'firebird'=>'CFirebirdSchema',//Firebird driver )
Posted 28 February 2012 - 12:54 PM
Posted 07 April 2012 - 04:03 PM
Posted 10 April 2012 - 01:47 PM
Posted 29 May 2012 - 06:30 AM
Posted 05 June 2012 - 11:30 AM
BotonInicio, on 29 May 2012 - 06:30 AM, said:
Posted 05 June 2012 - 02:59 PM
Posted 06 June 2012 - 11:57 AM
Posted 06 June 2012 - 12:01 PM
Posted 06 June 2012 - 12:09 PM
Posted 06 June 2012 - 12:17 PM
robregonm, on 06 June 2012 - 12:01 PM, said:
Posted 06 June 2012 - 02:37 PM
Posted 08 June 2012 - 10:27 AM
Posted 31 July 2012 - 11:38 PM
'db'=>array(
'connectionString' => 'firebird:dbname=localhost:C:/xampp/htdocs/firebird/protected/data/ISIMA.FDB',
'emulatePrepare'=>true,
'username'=>'SYSDBA',
'password'=> 'masterkey',
'attributes' => array(
PDO::ATTR_CASE => PDO::CASE_LOWER,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_FETCH_TABLE_NAMES => FALSE,
),
),'connectionString' => 'firebird:dbname=localhost:'.dirname(__FILE__).'/../data/ISIMA.FDB', ...
CDbConnection failed to open the DB connection: could not find driver
htdocs ... firebird ... ... assets ... ... css ... ... framework ... ... images ... ... protected ... ... themes ... ... index.php
Posted 01 August 2012 - 08:21 AM