在现有系统上,它使用旧的MySQL函数..我想将它全部替换为PDO,但这需要很长时间和大量测试。
是否可以在现有系统上混合使用PDO和MySQL功能?例如,新的页面/ php文件将使用PDO ...所有旧文件仍然会暂时使用旧的MySQL,并且将会被缓慢替换,因为系统将继续更新..
答案 0 :(得分:3)
是的,同时使用两者完全没问题。但请记住,您需要seperate connection for either type并谨防这种方法中的implications that arise。
答案 1 :(得分:1)
我是新手,但我也遇到过这个问题。许多人发现从mysql_*
切换到PDO很麻烦
在我的情况下,我使用单独的connection.php
存储函数来连接数据库并返回句柄
function connect()
{
$cn = mysql_connect("localhost","username","pass" );
$select = mysql_select_db("dbname", $cn);
return($cn);
}
//For PDO
function pdoconnect()
{
$db="";
try
{
$db=new PDO("mysql:host=localhost;dbname=dbname", "username", "pass");
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch (PDOException $er)
{
print("errr".$er."<br />");
return(1);
}
return($db);
}
对于旧功能我使用$cn=connect();
我切换到$cn=pdoconnect();
换新的。
这很有效,因为我已经在旧文件中使用了connect.php
。