Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
4b063ac0
Commit
4b063ac0
authored
Jul 08, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring database and connector classes.
parent
77d65b89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
20 deletions
+35
-20
db.php
system/db.php
+8
-15
connector.php
system/db/connector.php
+27
-5
No files found.
system/db.php
View file @
4b063ac0
...
...
@@ -7,10 +7,13 @@ class DB {
*
* @var array
*/
p
rivate
static
$connections
=
array
();
p
ublic
static
$connections
=
array
();
/**
* Get a database connection. Database connections are managed as singletons.
* Get a database connection. If no database name is specified, the default
* connection will be returned as defined in the db configuration file.
*
* Note: Database connections are managed as singletons.
*
* @param string $connection
* @return PDO
...
...
@@ -22,19 +25,9 @@ class DB {
$connection
=
Config
::
get
(
'db.default'
);
}
if
(
!
array_key_exists
(
$connection
,
static
::
$connections
))
{
$config
=
Config
::
get
(
'db.connections'
);
if
(
!
array_key_exists
(
$connection
,
$config
))
{
throw
new
\Exception
(
"Database connection [
$connection
] is not defined."
);
}
static
::
$connections
[
$connection
]
=
DB\Connector
::
connect
((
object
)
$config
[
$connection
]);
}
return
static
::
$connections
[
$connection
];
return
array_key_exists
(
$connection
,
static
::
$connections
)
?
static
::
$connections
[
$connection
]
:
static
::
$connections
[
$connection
]
=
DB\Connector
::
connect
(
$connection
);
}
/**
...
...
system/db/connector.php
View file @
4b063ac0
<?php
namespace
System\DB
;
use
System\Config
;
class
Connector
{
/**
...
...
@@ -17,11 +19,13 @@ class Connector {
/**
* Establish a PDO database connection.
*
* @param
object $config
* @param
string $connection
* @return PDO
*/
public
static
function
connect
(
$con
fig
)
public
static
function
connect
(
$con
nection
)
{
$config
=
static
::
configuration
(
$connection
);
if
(
$config
->
driver
==
'sqlite'
)
{
return
static
::
connect_to_sqlite
(
$config
);
...
...
@@ -37,14 +41,14 @@ class Connector {
/**
* Establish a PDO connection to a SQLite database.
*
* SQLite database paths can be specified either relative to the application/db
* directory, or as an absolute path to any location on the file system.
*
* @param array $config
* @return PDO
*/
private
static
function
connect_to_sqlite
(
$config
)
{
// Database paths can either be specified relative to the application/storage/db
// directory, or as an absolute path.
if
(
file_exists
(
$path
=
APP_PATH
.
'storage/db/'
.
$config
->
database
.
'.sqlite'
))
{
return
new
\PDO
(
'sqlite:'
.
$path
,
null
,
null
,
static
::
$options
);
...
...
@@ -84,4 +88,22 @@ class Connector {
return
$connection
;
}
/**
* Get the configuration options for a database connection.
*
* @param string $connection
* @return object
*/
private
static
function
configuration
(
$connection
)
{
$config
=
Config
::
get
(
'db.connections'
);
if
(
!
array_key_exists
(
$connection
,
$config
))
{
throw
new
\Exception
(
"Database connection [
$connection
] is not defined."
);
}
return
(
object
)
$config
[
$connection
];
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment