Agar framework Cakephp dapat melakukan koneksi ke SQL Server 2005 or later.
1. Download datasource disini : Datasource Cakephp For SQL Server 2005
2. Extract dan copy folder Datasources ke :
your_cakephp_folder/App/Plugin/[Paste Disini]
3. Buka file bootstrap.php pada path :
your_cakephp_folder/App/Config/Bootstrap.php
Kemudian tambahkan code di bawah ini pada line di paling bawah :
// Required to load plugin datasource from app\Plugin\Datasources\Model\Datasource\Database
CakePlugin::load('Datasources');
4. Edit konfigurasi database anda (your_cakephp_folder/App/Config/database.php)
Berikut adalah sample contoh konfigurasinya :
public $default = array(
'datasource' => 'Datasources.Database/Mssql',
'persistent' => false,
'host' => 'MyHost',
'login' => 'MyUsername',
'password' => 'MyPassword',
'database' => 'MyDatabase',
'schemaName' => 'dbo',
'prefix' => '',
'port' => NULL
);
5. Jika konfigurasi benar maka akan muncul tulisan pada welcome page cakephp :
( Cake is able to connect to the database )
- End of Setup Datasource SQL Server 2005 -
Post a Comment
Harap gunakan bahasa yang baik dan sopan, terima kasih