Simple code to answer, the younger brother really do not understand why return failed! What to do with it

Source: Internet
Author: User
Simple code to answer, the younger brother really do not understand why return failed!
I want to add data to the database, can fail, this is my SQL class, and then down the code is I call this class of code, I hope the good-hearted people to help answer, grateful!
Class sqltool{
Private $conn;
Private $host = "localhost";
Private $user = "root";
Private $password = "root";
Private $db = "Test";

function SqlTool () {
$this->conn=mysql_connect ($this->host, $this->user, $this->password);
if (! $this->conn) {
Die ("Connect faild!". Mysql_error ());
}
mysql_select_db ($this->db, $this->conn);
mysql_query ("Set names GBK");
}
Complete Select
function Execute_dql ($sql) {

//}
Function:update, Delete,insert
function Execute_dml ($sql) {
$b =mysql_query ($sql);
Var_dump ($b);
if (! $b) {
Return 0;//faild
}else{
if (Mysql_affected_rows ($this->conn) >0) {
Return 1;//success
}else{
Return 2;//no Influence
}
}
}
}
?>





Require_once "mysqltool.php";
Create MySQL
$sql = "INSERT INTO User1 (name,password,email,age) VALUES (' Xiao Ming ', MD5 (123), ' xiaoming@sina.com ', 20)";
$sqlTool =new SqlTool ();
$res = $sqlTool->execute_dml ($sql);
Var_dump ($res);
if ($res ==0) {
echo "faild!";
}else if ($res ==1) {
echo "Success";
}else if ($res ==2) {
echo "no influence";
}
?>







------Solution--------------------
Failure must have been the failure of SQL command execution.

$b =mysql_query ($sql) or Die (Mysql_error ());
This way, you will be prompted if there is an error.
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.