I add some codes to supports transaction.
roydu 2014-04-18
Make sure you've change the configuration file config.php.
Include config.php to your php code
standard query
//this will get all records with username wildan
$data=array('username'=>'wildan');
$custom=$db->custom_query("select * from admin where username=?",$data);
foreach ($custom as $key) {
echo $key->username; //print username column
}
join 2 table
//get all record from 2 tables with join
$qr="select admin.*,level.* from admin inner join level on admin.level=level.id_level";
$cust=$db->custom_query($qr);
foreach ($cust as $key) {
echo $key->username.":".$key->name_level;
}
join 2 tables with condition
//get all record with condition (admin.level=2)
$qr="select admin.*,level.* from admin inner join level on admin.level=level.id_level and admin.level=?";
$cust=$db->custom_query($qr,array('admin.level'=>2));
foreach ($cust as $key) {
echo $key->username.":".$key->name_level; //print username column and levelname
}
Retrieving All Rows From A Table
//equal to select * from admin
$rs=$db->fetch_all('admin');
foreach ($rs as $key) {
echo $key->username.":".$key->password."<br>";
}
Retrieving A Single Row From A Table
//only return one row
//select * from admin where id_user=4
$rs=$db->fetch_single_row('admin','id_user',4);
echo $rs->username;
Retrieving A List Of Column Values
//select username,password from admin
$f=$db->fetch_col('admin',array('username','password'));
foreach ($f as $key) {
echo $key->username.$key->password."<br>";
}
Retrieving A List Of Column Values with condition
//select username,password where level=1'
$row=$db->fetch_multi_row('admin',array('username','password'),array('level'=>1));
foreach ($row as $key) {
echo $key->username."<br>";
}
Retrieving A List Of Column Values with condition and order (ASC|DESC)
//select username,password where level=1 order by id ASC|DESC'
$row=$db->fetch_multi_row_oder('admin',array('username','password'),array('level'=>1),'id','ASC');
foreach ($row as $key) {
echo $key->username."<br>";
}
CHECK EXIST
//select username,password where username='$username' and password='$password'
//return true if exist
//case login system
$data=array(
'username'=>$_POST['username'],
'password'=>md5($_POST['password'])
);
$s=$db->check_exist('admin',$data);
if ($s==true) {
echo "good";
} else {
echo "wrong";
}
Search Record
1. search one cond
//search data
//select username,password from admin where username like %wild%
$find=$db->search('admin',array('username','password'),array('username'=>'wild'));
foreach ($find as $key) {
echo $key->username;
}
2. search multi cond
//select username,password from admin where username like %wild% OR password LIKE %ad%
$find=$db->search('admin',array('username','password'),array('username'=>'wild','password'=>'ad'));
foreach ($find as $key) {
echo $key->username;
}
//equal to insert into admin (username,password,level) values('admin',md5('admin'),1)
$data=array('username'=>'admin',
'password'=>md5('admin'),
'level'=>1);
$db->insert('admin',$data);
//equal to insert into admin (username,password,level) values('admin',md5('admin'),1)
$data=array('username'=>'admin',
'password'=>md5('admin'),
'level'=>1);
$db->insert('admin',$data);
$last_id = $db->get_last_id(); //this will get the last insert id from admin table
//equal to update admin set username='wildan',level=1 where id_user=1
$data=array('username'=>'wildan',
'level'=>1);
$db->update('admin',$data,'id_user',1);
//delete from admin where id_user=1
$db->delete('admin','id_user',1);
//if you have complex query, you can use custom_query. You can use custom query as complex as u want, and also absolutely with prepared statement for security reason. below is the sample how to use custom query.
//fetch data
$data = array('id'=>1,'level'=>1);
$db->custom_query("select * from admin where id=? and level=?");
//insert data,
$data=array('username'=>'admin',
'password'=>md5('admin'),
'level'=>1);
$db->custom_query("insert into admin (username,password) values(?,?)",$data);
//custom query update data,
$data=array('username'=>'wildan',
'level'=>2,
'id'=>1);
$db->custom_query("update admin set username=?,level=? where id=?",$data);
//delete data
$data=array('id'=>1);
$db->custom_query("delete from admin where id=?",$data);
- wildantea - [email protected]