-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathDatabaseAdapter.php
67 lines (59 loc) · 1.34 KB
/
DatabaseAdapter.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
<?php
/**
*
* This file is part of mvc-rest-api for PHP.
*
*/
namespace Database;
/**
* Class DatabaseAdapter for handel database query
*
* @author Mohammad Rahmani <rto1680@gmail.com>
*
* @package Database
*/
class DatabaseAdapter {
/**
* Database Connection
*
* @var
*/
private $dbConnection;
/**
* Database constructor. set connection driver [pdo, mysqli, mysql,...]
*
* @param $driver
* @param $hostname
* @param $username
* @param $password
* @param $database
*/
public function __construct($driver, $hostname, $username, $password, $database, $port) {
$class = '\Database\DB\\' . $driver;
if (class_exists($class)) {
$this->dbConnection = new $class($hostname, $username, $password, $database, $port);
} else {
exit('Error: Could not load database driver ' . $driver . '!');
}
}
/**
* @param $sql
* @return mixed
*/
public function query($sql) {
return $this->dbConnection->query($sql);
}
/**
* @param $value
* @return mixed
*/
public function escape($value) {
return $this->dbConnection->escape($value);
}
/**
* @return mixed
*/
public function getLastId() {
return $this->dbConnection->getLastId();
}
}