-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb2.php
44 lines (37 loc) · 1.03 KB
/
db2.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
<?php
class DB2{
private $host;
private $port;
private $user;
private $pass;
private $charset;
private $dbname;
private $link;
private $last_sql;
public function __construct($params = array()){
$this->host = isset($params['host'])?$param['host']:'127.0.0.1';
$this->port = isset($params['port'])?$params['port']:'3306';
$this->user = isset($params['user'])?$params['user']:'root';
$this->pass = isset($params['pass'])?$params['pass']:'root';
$this->charset = isset($params['charset'])?$params['charset']:'utf8';
$this->dbname = isset($params['dbname'])?$params['dbname']:'test';
$this->connect();
$this-> setCharSet();
}
public function connect(){
if(!$link =mysql_connect("$this->host:$this->port",$this->user,$this->pass)){
echo 'DBDAIL 01<br />';
echo mysql_errno().':'.mysql_error();
die();
}else{
$this->link = $link;
}
}
public ffunction setCharSet(){
if (!mysql_connect("set names $this->charset")) {
echo 'DBDAIL 01<br />';
echo mysql_errno().':'.mysql_error();
die();
}
}
}