-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclass.db.php
131 lines (124 loc) · 2.54 KB
/
class.db.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
class DBConnect
{
private $strHost;
private $strUserName;
private $strPassword;
private $strDatabaseName;
public $dbConnect;
protected $intErrorNo;
function __construct()
{
$this->strHost="localhost";
$this->strUserName="root";
$this->strPassword="";
$this->strDatabaseName="cmsys";
$this->Connect();
}
function Connect()
{
$dbConnect=mysql_connect($this->strHost,$this->strUserName,$this->strPassword);
if($dbConnect)
{
mysql_select_db($this->strDatabaseName);
}
else
{
echo(mysql_error());
}
}
public function ExecuteQry($pStrSql)
{
return mysql_query($pStrSql);
}
public function InsertRecord($pStrTableName,$pArrFileds,$pArrValues)
{
$strSql="insert into $pStrTableName ";
$strSql.="( ";
$intFieldSize=count($pArrFileds);
for($i=0;$i<$intFieldSize;$i++)
{
if($i==$intFieldSize-1)
{
$strSql.=$pArrFileds[$i];
}
else
{
$strSql.=$pArrFileds[$i].",";
}
}
$strSql.=") values (";
$intValueSize=count($pArrValues);
for($i=0;$i<$intFieldSize;$i++)
{
if($i==$intValueSize-1)
{
$strSql.="'".$pArrValues[$i]."'";
}
else
{
$strSql.="'".$pArrValues[$i]."'".",";
}
}
$strSql.=")";
return $this->ExecuteQry($strSql);
}
function DeleteRecord($pStrTableName,$pStrCondition)
{
$strSql="delete from $pStrTableName ".$pStrCondition;
$this->ExecuteQry($strSql);
}
function UpdateRecord($pStrTableName,$pArrFileds,$pArrValues,$pStrCondition)
{
$strSql="update $pStrTableName set ";
$intFieldSize=count($pArrFileds);
for($i=0;$i<$intFieldSize;$i++)
{
if($i==$intFieldSize-1)
{
$strSql.=$pArrFileds[$i]."='".$pArrValues[$i]."'";
}
else
{
$strSql.=$pArrFileds[$i]."='".$pArrValues[$i]."'".",";
}
}
$strSql.=" $pStrCondition";
$this->ExecuteQry($strSql);
}
function GetFieldValues($pArrFileds,$pArrTable,$pStrCondition)
{
$strSql="select ";
$intArrFiledSize=count($pArrFileds);
for($i=0;$i<$intArrFiledSize;$i++)
{
if($i==$intArrFiledSize-1)
{
$strSql.=$pArrFileds[$i];
}
else
{
$strSql.=$pArrFileds[$i].",";
}
}
$strSql.=" from ";
$intArrTableSize=count($pArrTable);
for($j=0;$j<$intArrTableSize;$j++)
{
if($j==$intArrTableSize-1)
{
$strSql.=$pArrTable[$j];
}
else
{
$strSql.=$pArrTable[$j].",";
}
}
$strSql.=" ".$pStrCondition;
return $this->ExecuteQry($strSql);
}
}
//$objDbConnect=new DBConnect();
//
//$objDbConnect->GetFieldValues(array("ProductId","ProductCode","ProductName"),array("product"),"where ProductId=1");
?>