-1

最近、MariaDB に移行しました。MySQL 5.6 以降、多くの失敗があったためです。

MariaDB は問題なく動作しますが、新しいプロジェクトでは、PHP スクリプトを使用してデータベースにデータを挿入できません。手動でしか挿入できません。MySQL で動作するスクリプトを変更していません。

INSERT ステートメントは次のとおりです。

INSERT INTO participantes (nome, curso, email, equipe) VALUES (:nome, :curso, :email, :equipe);

挿入するスクリプトは次のとおりです。

$stmt = $this->dbh->prepare($this->SQL_INSERT);
$nome = $participante->nome();
$curso = $participante->curso();
$email = $participante->email();
$equipe = $participante->equipe();
$stmt->bindParam(':nome', $nome);
$stmt->bindParam(':curso', $curso);
$stmt->bindParam(':email', $email);
$stmt->bindParam(':equipe', $equipe);
$stmt->execute();

「参加者」関数は、使用するデータを問題なく返します。すべてが try/catch ブロック内にあり、例外は報告されません。

私の PDO クラスは次のとおりです。

class Connection extends PDO {
    private $dsn = 'mysql:host=localhost;port=3307;dbname=dacu';
    private $usr = 'dacu';
    private $pwd = 'my password';

    public $handle = null;

    function __construct() {
        try {
            if ($this->handle == null) {
                $dbh = new PDO($this->dsn, $this->usr, $this->pwd);
                $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
                $this->handle = $dbh;
                return $this->handle;
            }
        }
        catch (PDOException $e) {
            throw new Exception('Não foi possível conectar-se ao banco de dados: ' . $e->getMessage());
        }
        catch (Exception $e) {
            throw new Exception('Um erro não identificado ocorreu: ' . $e->getMessage());
        }
    }
}

controller->insert を使用すると、次のようになります。

Warning: PDO::prepare(): SQLSTATE[00000]: No error: PDO constructor was not called in C:\Webserver\Files\dacu\controller\EquipesController.php on line 25

必要に応じて、ペーストビンにコードを投稿できます。

4

1 に答える 1

1

接続を確認してから、この方法を試してください。正常に動作しています。

    //first you need a connection to mysql use this and replace the variables

        try {
          $dbh = new PDO('mysql:host=localhost;dbname='.$db_name.'', $user, $pass, array(
            PDO::ATTR_PERSISTENT => true
        ));
        $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
          } catch (PDOException $e) {
            print "Error!: " . $e->getMessage() . "<br/>";
            die();
        }

    //then do the insert variable

        $sql  = 'INSERT INTO encomendas (`nome`, `user`, `id`, `email`) ';
        $sql .= 'VALUES (:nome, :curso, :email, :equipe )';


        $query = $dbh->prepare($sql);

    //bindParam with your own variables

        $query->bindParam(':nome', $varDoNome, PDO::PARAM_STR);
        $query->bindParam(':curso',  $varDoCurso, PDO::PARAM_STR);
        $query->bindParam(':email', $varDoEmail, PDO::PARAM_STR);
        $query->bindParam(':equipe', $varDaequipe, PDO::PARAM_STR);

    //execute query

        $query->execute()

;
于 2013-05-04T20:16:52.270 に答える