class PDOExtender
{
private $_DBO;
public function openConnection()
{
$dsn = "mysql:host=".DB_HOST.";dbname=".DB_NAME;
$this->_DBO = new PDO($dsn, DB_USER, DB_PASS, array(PDO::ATTR_PERSISTENT => true));
}
}
我知道这个类实际上没有扩展pdo对象,我不知道为什么我这样称呼它。
我需要添加这个类,以便我可以进行一些查询,特别是使用预处理语句。有人可以给我反馈要添加的内容来完成此任务 我目前正在从另一个类里面调用这个类,
$this->_siteRegistry = Registry::singleton();
$this->_siteRegistry->storeObject("PDOExtender", "DBO");
$this->_DBO = $this->_siteRegistry->getObject("DBO");
try {
$this->_DBO->openConnection();
} catch(Exception $e) {
throw new Exception("server");
}
在我的旧项目中,我只使用了mysql,但我自己创建了代码,我确信它不是完成任务的最佳方式,所以我宁愿不只是使用我对pdo集成的代码。 /> 就是这样,
public function runQuery($query, $functionArray = array(), $needResults)
{
$stmtParam = "";
$parameters = array();
$results = array();
foreach ($functionArray as $v) {
$stmtParam .= "s";
}
array_unshift($functionArray, $stmtParam);
$stmt = $this->_dbConnection->prepare($query);
call_user_func_array(array($stmt, 'bind_param'), $functionArray);
$stmt->execute();
if($needResults) {
$meta = $stmt->result_metadata();
while ( $field = $meta->fetch_field() ) {
$parameters[] = &$row[$field->name];
}
call_user_func_array(array($stmt, 'bind_result'), $parameters);
while ( $stmt->fetch() ) {
$x = array();
foreach( $row as $key => $val ) {
$x[$key] = $val;
}
$results[] = $x;
}
return $results;
} else return true;
}
我需要帮助将旧代码转换为与pdo一起使用 如果有人知道任何有关如何做到这一点的精彩教程请链接他们,我确实看起来但找不到。
感谢您的时间 克里斯
答案 0 :(得分:1)
我还有一个用于数据库连接的单例类,您可能需要检查:
class DBConnection extends Singleton{
private $connexion_pdo=null;
protected function initialize(){
$this->connexion_pdo = null;
try{
$this->connexion_pdo = new PDO(PDO_DSN,PDO_USR,PDO_PSW);
}
catch(PDOException $erreur){
throw new Exception($erreur->getMessage());
}
$this->connexion_pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$this->connexion_pdo->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
}
public function execute($query,$values=array()){
try {
$this->connexion_pdo->beginTransaction();
$prepare_execute = $this->getPDOStatement($query);
$prepare_execute->execute($values);
$this->connexion_pdo->commit();
} catch(PDOException $erreur){
throw new Exception($erreur->getMessage());
}
}
public function executeQuery($query,$values=array()){
try {
$resp = array();
//$this->connexion_pdo->beginTransaction();
$prepare_execute = $this->getPDOStatement($query);
$prepare_execute->execute($values);
$resp = $prepare_execute->fetchAll();
//$this->connexion_pdo->commit();
return $resp;
} catch(PDOException $erreur){
throw new Exception($erreur->getMessage());
}
}
public function getPDOStatement($query){
try {
$prepare_execute = null;
$prepare_execute = $this->connexion_pdo->prepare($query,array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY));
return $prepare_execute;
} catch(PDOException $erreur){
throw new Exception($erreur->getMessage());
}
}
}
我对INSERT,DELETE和UPDATE使用'execute()',为SELECT使用'executeQuery()'。我知道这段代码可以改进,但主要的想法是= D
我已经看到你正在使用而循环来转换查询结果。我建议你创建另一个管理它的类。必须有一个类询问数据库,另一个类将结果映射到您需要的数据(数组,对象等)
祝你好运!
答案 1 :(得分:0)
您可以将PDO类设置为类构造函数的参数。
示例:
$pdo = "...connect... & etc.";
$myClass = new MyClass($parameters, $pdo);
MyClass:
class MyClass {
private $pdo;
public function __construct($parameters, $pdo) {
$this->pdo = $pdo;
}
}
现在您可以在类AS $ this-> pdo->查询&中使用PDO了。等