簡體   English   中英

PHP 7.x SQLITE3 PDO-execute()是否關閉PDO連接?

[英]PHP 7.x SQLITE3 PDO - is the execute() closing the PDO connection?

我的這段代碼與SQLITE3奇怪,因為與MYSQL相同的代碼可以正常工作

問題是在第31行用“ ISSUE”注釋了該行,因為對於MYSQL / MariaDB,不需要“重新連接”

現在我更好地解釋

如果未輸入IF例程,則沒有錯誤

如果處理了IF例程,則第34行引發

Uncaught Error: Call to undefined method PDOStatement::prepare()

就像$ PDO-execute(); IF內部破壞了PDO距離

您可能會說,嗯,沒問題,現在您已經解決了它……是的,但是我想了解為什么會這樣。

便攜性也是重點。 如果這是PDO ...(除了連接),則腳本的其余部分應正常工作並在各種受支持的PDO DB之間移動

如果您能暗示原因是什么,謝謝

<?php

// Create or open a database file
$PDO = new PDO('sqlite:myDatabase.sqlite3');


if( isset($_POST['NoteUpdateText'])  && !empty(trim($_POST['NoteUpdateText'])) ){

    //$testo = $_POST['NoteUpdateText'];

    try {

            $PDO = $PDO->prepare('UPDATE ajax SET testo = :testo WHERE id = :id');
            $PDO->bindValue(':testo', $_POST['NoteUpdateText']);
            $PDO->bindValue(':id', 1);
            $PDO->execute();

        // echo a message to say the UPDATE succeeded
        //echo $stmt->rowCount() . " records UPDATED successfully";
        }
    catch(PDOException $e)
        {
        echo $sql . "<br>" . $e->getMessage();
        }
}

// In EVERY case, load the actual DB record and return it to javascript

$PDO = new PDO('sqlite:myDatabase.sqlite3');  // --- ISSUE, theoretically this is already opened at line #3 ---

    try {
            $PDO = $PDO->prepare('SELECT testo FROM ajax WHERE id=1 LIMIT 1'); 
            $PDO->execute(); 
            $row = $PDO->fetch();
            //var_dump($row);
            echo $row["testo"];
        }
    catch(PDOException $e)
        {
        echo $sql . "<br>" . $e->getMessage();
        }       

?>

固定碼

<?php

//include 'db-con2.php';
// table: ajax  
// col: testo

// Create or open a database file
$PDO = new PDO('sqlite:myDatabase.sqlite3');

if( isset($_POST['NoteUpdateText'])  && !empty(trim($_POST['NoteUpdateText'])) ){

    //$testo = $_POST['NoteUpdateText'];

    try {

            $statement = $PDO->prepare('UPDATE ajax SET testo = :testo WHERE id = :id');
            $statement->bindValue(':testo', $_POST['NoteUpdateText']);
            $statement->bindValue(':id', 1);
            $statement->execute();

        // echo a message to say the UPDATE succeeded
        //echo $stmt->rowCount() . " records UPDATED successfully";
        }
    catch(PDOException $e)
        {
        echo $sql . "<br> - IF -" . $e->getMessage();
        }
}

// carica da DB in ogni caso per caricare il P col testo realmente in DB
//$PDO = new PDO('sqlite:myDatabase.sqlite3');

    try {
            $statement = $PDO->prepare('SELECT testo FROM ajax WHERE id=1 LIMIT 1'); 
            $statement->execute(); 

            $row = $statement->fetch();
            //var_dump($row);
            echo $row["testo"];
        }
    catch(PDOException $e)
        {
        echo $sql . "<br> - NORMALE - " . $e->getMessage();
        }       

?>

為什么要覆蓋$PDO變量?

$pdo = new PDO('sqlite:myDatabase.sqlite3');



if( isset($_POST['NoteUpdateText'])  && !empty(trim($_POST['NoteUpdateText'])) ){

  //$testo = $_POST['NoteUpdateText'];

 try {

   $stmt = $PDO->prepare('UPDATE ajax SET testo = :testo WHERE id = :id');
   if ($stmt->execute(array(':testo'=>$_POST['NoteUpdateText'], ':id' => 1)))
   {

     // echo a message to say the UPDATE succeeded
     //echo $stmt->rowCount() . " records UPDATED successfully";
   } else {
     // There's error processing updates
     // debug
     print_r($stmt->errorInfo());
   }
  } catch(PDOException $e) {
    echo $sql . "<br>" . $e->getMessage();
  }
}

// In EVERY case, load the actual DB record and return it to javascript

// There's no need to redeclare $PDO 
// $PDO = new PDO('sqlite:myDatabase.sqlite3');  // --- ISSUE, theoretically this is already opened at line #3 ---

  try {
    $stmt = $pdo->prepare("SELECT testo FROM ajax WHERE id=1 LIMIT 1"); // line #34
   $stmt->execute(); 
   $row = $stmt->fetch();
   //var_dump($row);
   echo $row["testo"];
 } catch(PDOException $e) {
   echo $sql . "<br>" . $e->getMessage();
 }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM