-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.php
32 lines (32 loc) · 1.05 KB
/
config.php
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
26
27
28
29
30
31
32
<?php
return array(
"automaker"=>array(
"connectionString"=>"mysql:host=sampledb.koolreport.com;dbname=automaker",
"username"=>"expusr",
"password"=>"koolreport sampledb",
"charset"=>"utf8"
),
"sakila"=>array(
"connectionString"=>"mysql:host=sampledb.koolreport.com;dbname=sakila",
"username"=>"expusr",
"password"=>"koolreport sampledb",
"charset"=>"utf8"
),
"world"=>array(
"connectionString"=>"mysql:host=sampledb.koolreport.com;dbname=world",
"username"=>"expusr",
"password"=>"koolreport sampledb",
"charset"=>"utf8"
),
"employees"=>array(
"connectionString"=>"mysql:host=sampledb.koolreport.com;dbname=employees",
"username"=>"expusr",
"password"=>"koolreport sampledb",
"charset"=>"utf8"
),
"salesCSV"=>array(
'filePath' => '../../../databases/customer_product_dollarsales2.csv',
'class' => "\koolreport\datasources\CSVDataSource",
'fieldSeparator' => ';',
)
);