1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
return array(
'application' => array(
'id' => 'Chat',
'mode' => 'Debug'
),
'paths' => array(
'using'=>array(
'Application.App_Code.*',
'System.Data.*',
'System.Data.ActiveRecord.*',
'System.Security.*',
'System.Web.UI.ActiveControls.*',
),
),
'modules' => array(
'db' => array(
'class' => 'TActiveRecordConfig',
'properties' => array(
'EnableCache' => 'true',
'Database.ConnectionString'=>"sqlite:protected/App_Code/chat.db",
)
),
),
);
|