码迷,mamicode.com
首页 > 数据库 > 详细

SQL 增、删、改、查 封装函数

时间:2016-12-02 22:49:41      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:upd   数据库   失败   set   one   封装   res   connect   逗号   

<?php
//连接数据库
function connects($host,$username,$password,$databaseName){

$conn=mysql_connect($host,$username,$password) or die(‘连接数据库失败‘);

mysql_select_db($databaseName);

mysql_query(‘set names utf8‘);

return $conn;
}
//查询
function Select_tb($tables,$fields=‘*‘,$where=1,$limits=0,$limite=1){

$sql="select {$fields} from {$tables} where {$where} limit $limits,$limite";

$result=mysql_query($sql);

$arr=array();

while ($row=mysql_fetch_array($result,MYSQL_ASSOC)) {
$arr[]=$row;
}

return $arr;
}
//获取一条数据
function Getone($tables,$fields=‘*‘,$where=1){

$sql="select {$fields} from {$tables} where {$where}";

$result = mysql_query($sql) or die(‘执行sql语句出错‘);

return mysql_fetch_array($result);
}
//删除
function deletes($tables,$where){

$sql="delete from {$tables} where {$where}";

$result =mysql_query($sql);

if ($result)
return true;
else
return false;
}
//添加
function Insert($tables,$keys,$values){

$sql="insert into {$tables} ({$keys}) values({$values})";

$result = mysql_query($sql);

if($result)
return true;
else
return false;
}
//修改
function updates($tables,$where=null){

$fields=rtrim($fields,‘,‘); //去掉sql里的最后一个逗号

$where=$where==null?‘‘:‘where‘.$where;

$sql="Update {$tables} set {$fields} {$where}";

$result=mysql_query($sql);

if ($result)
return mysql_affected_rows();
else
return false;
}


?>

SQL 增、删、改、查 封装函数

标签:upd   数据库   失败   set   one   封装   res   connect   逗号   

原文地址:http://www.cnblogs.com/chung/p/6127313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!