sql >> データベース >  >> RDS >> Mysql

PDOを使用して各ページが読み込まれるクエリの数をカウントする

    PDOの拡張 他のクラスと同じように行われます。これはあなたのニーズに合いますか?他の唯一のコード変更は、PDOの代わりにこのクラスをインスタンス化する必要があることです。 最初の接続時にクラスを作成します。

    class PDOEx extends PDO
    {
        private $queryCount = 0;
    
        public function query($query)
        {
        // Increment the counter.
            ++$this->queryCount;
    
        // Run the query.
            return parent::query($query);
        }
    
        public function exec($statement)
        {
        // Increment the counter.
            ++$this->queryCount;
    
        // Execute the statement.
            return parent::exec($statement);
        }
    
        public function GetCount()
        {
            return $this->queryCount;
        }
    }
    


    1. Yii2はforeachループを使用してデータを表示します

    2. Perl DBIは、mysqlネイティブの複数挿入機能を使用して複数の行を挿入します

    3. phpとandroidを使用してサーバー(mysqlデータベース)に複数の画像をアップロードする方法

    4. mysql_num_rows()は、パラメーター1がリソースであると想定しています。ブール値は次のように指定されます。