-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdatabase_config.php
131 lines (114 loc) · 3.93 KB
/
database_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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/**
* *
* * please don't remove this comment block
* *
* * @author phptricks Team - Mohammad Anzawi
* * @author_uri https://phptricks.org
* * @uri https://github.com/anzawi/php-database-class
* * @version 5.0.0
* * @licence MIT -> https://opensource.org/licenses/MIT
* * @package PHPtricks\Orm
*
*/
return [
/*
|--------------------------------------------------------------------------
| PDO Fetch Style
|--------------------------------------------------------------------------
|
| By default, database results will be returned as instances of the PHP
| stdClass object; however, you may desire to retrieve records in an
| array format for simplicity. Here you can tweak the fetch style.
|
*/
'fetch' => PDO::FETCH_OBJ, // for array -> PDO::FETCH_ASSOC,
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish.
*/
'default' => 'mysql',
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by PHPtricks/database class is shown below to make development simple.
|
|
| All database work in HPtricks/database is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections' => [
// MySQL 3.x/4.x/5.x
'mysql' => [
'driver' => 'mysql',
'host_name' => '192.168.10.10',
'db_name' => 'test',
'db_user' => 'homestead',
'db_password' => 'secret',
],
// PostgreSQL
'pgsql' => [
'driver' => 'pgsql',
'host_name' => 'localhost',
'db_name' => 'database_name',
'db_user' => 'database_username',
'db_password' => 'database_user_password',
],
// SQLite
'sqlite' => [
'db_path' => 'my/database/path/database.db',
],
// MS SQL Server
'mssql' => [
'driver' => 'mssql',
'host_name' => 'localhost',
'db_name' => 'database_name',
'db_user' => 'database_username',
'db_password' => 'database_user_password',
],
// MS SQL Server
'sybase' => [
'driver' => 'sybase',
'host_name' => 'localhost',
'db_name' => 'database_name',
'db_user' => 'database_username',
'db_password' => 'database_user_password',
],
// Oracle Call Interface
'oci' => [
'tns' => '
DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = yourip)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = orcl)
)
)',
'db_user' => 'database_username',
'db_password' => 'database_user_password',
],
],
"pagination" => [
"no_data_found_message" => "Oops, No Data Found to show ..",
"records_per_page" => 10,
"link_query_key" => "page",
],
// Directories for Commands
'directories' => [
'create' => __DIR__.'/../Migrations/create/',
'alter' => __DIR__.'/../Migrations/alter/',
'drop' => __DIR__.'/../Migrations/drop/',
'migrated-file' => __DIR__.'/../Migrations/temp/',
'models' => __DIR__.'/../Models/'
],
];