mysql - php中使用PDO查詢資料庫出錯

來源:互聯網
上載者:User
查詢的代碼是:

$email=htmlspecialchars($_POST["email"]);if($sql->getData('SELECT * FROM user WHERE email='.$email)==NULL){

getData的代碼是:

public function getData($sql,$type=1){    $data=Array();    $db=$this->db();    $result=$db->query($sql);    $sth = $db->prepare($sql);    $sth->execute();    if(is_bool($result))        return $result;    if($type==1)        while($a = $sth->fetch(PDO::FETCH_ASSOC))            $data[]=$a;    elseif($type==2)        while($a = $sth->fetch(PDO::FETCH_BOTH))            $data[]=$a;    if($data)        return $data;    else        return NULL;}

錯誤提示是:

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '@gmail.com' at line 1' in D:\phpStudy\WWW\core\mysql\drivers\PDO.php:61 Stack trace: #0 D:\phpStudy\WWW\core\mysql\drivers\PDO.php(61): PDO->query('SELECT * FROM u...') #1 D:\phpStudy\WWW\core\login.php(105): DB_PDO->getData('SELECT * FROM u...') #2 {main} thrown in D:\phpStudy\WWW\core\mysql\drivers\PDO.php on line 61

回複內容:

查詢的代碼是:

$email=htmlspecialchars($_POST["email"]);if($sql->getData('SELECT * FROM user WHERE email='.$email)==NULL){

getData的代碼是:

public function getData($sql,$type=1){    $data=Array();    $db=$this->db();    $result=$db->query($sql);    $sth = $db->prepare($sql);    $sth->execute();    if(is_bool($result))        return $result;    if($type==1)        while($a = $sth->fetch(PDO::FETCH_ASSOC))            $data[]=$a;    elseif($type==2)        while($a = $sth->fetch(PDO::FETCH_BOTH))            $data[]=$a;    if($data)        return $data;    else        return NULL;}

錯誤提示是:

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '@gmail.com' at line 1' in D:\phpStudy\WWW\core\mysql\drivers\PDO.php:61 Stack trace: #0 D:\phpStudy\WWW\core\mysql\drivers\PDO.php(61): PDO->query('SELECT * FROM u...') #1 D:\phpStudy\WWW\core\login.php(105): DB_PDO->getData('SELECT * FROM u...') #2 {main} thrown in D:\phpStudy\WWW\core\mysql\drivers\PDO.php on line 61

你需要把email地址引起來

getData('SELECT * FROM user WHERE email="'.$email.'"')==NULL){

這個是你的 SQL 陳述式語法錯誤,字串要用引號括起來:

$pdo->getData("SELECT * FROM `table` WHERE `email` = '{$email}'");

以後遇到這種錯誤你列印你的語句出來就知道錯哪了

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    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.