Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

पीडीओ के लगातार कनेक्शन का उपयोग कैसे करें?

यह सवाल बहुत पुराना है लेकिन अगर मैं योगदान दूं तो ठीक रहेगा। मुझे लगता है कि आपको डेटाबेस कनेक्शन को संभालने के लिए सिंगलटन क्लास को लागू करने की आवश्यकता है, मैं नीचे एक नमूना वर्ग लिखूंगा ..

<?php
class DB{

//set the connection property to private to prevent direct access 
private static $conn;

//now since we dont want to reinstiate the class anytime we need it, lets also set the constructor to private 
private function __construct(){}

//now lets create our method for connecting to the database 
public static function connect(){

//now lets check if a connection exists already in our $conn property, then we should return it instead of recreating a new connection 
if(!empty(self::$conn)){
return self::$conn;
}//end if 

//upon reaching here means the $conn property is empty so lets create a new connection 

try {
 $dbh = new PDO('mysql:host=127.0.0.1;dbname=lingtong', 'root', 'xxxxxx', array(PDO::ATTR_PERSISTENT => true));

//lets now assign the database connection to our $conn property 
self::$conn = $dbh;

//return the connection 
return $dbh;

} catch (PDOException $e) {
 print "Error! : " . $e->getMessage() . "<br/>";
 die();
}

}//end method 

}//end class

?>

हमारा सिंगलटन वर्ग केवल एक कनेक्शन बना सकता है और उसका पुन:उपयोग कर सकता है, आइए देखें कि हम अपनी कक्षा का उपयोग कैसे कर सकते हैं

<?php 
$dbh = DB::connect();

foreach ($dbh->query('SELECT * from agent') as $row){ 
  print_r($row);
}
?>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. mysql डेटाबेस में मूल्य प्राप्त करते समय अजीब वर्ण प्राप्त करना

  2. mysql innodb लेनदेन संगामिति

  3. MySQL str_to_date मान्य स्वरूपण के बावजूद NULL उत्पन्न करता है

  4. Laravel Query में 3 से अधिक गिनने पर आइटम कैसे चुनें?

  5. सीमित स्ट्रिंग को mysql में एकाधिक मानों में कनवर्ट करना