我有一个名为dataBase
的班级。看起来像这样
class dataBase
{
private $conexion;
private $paisConexion;
var $db;
function __construct($db='default')
{
$this->db = $db;
include '../settings/variables.php';
if(isset($bbdd)){
$conexion = mysql_connect($bbdd["server"], $pais[0]['user'], $pais[0]['pass']) or die('No se pudo conectar: '.mysql_error());
// Seleccionamos la base de datos
mysql_select_db($x[0]['database']) or die('No se pudo seleccionar la base de datos');
if($conexion)
{
$paisConexion = mysql_connect($bbdd["server"], $pais[$this->db]['user'], $pais[$this->db]['pass']) or die('No se pudo conectar: '.mysql_error());
mysql_select_db($pais[$this->db]['database']) or die('No se pudo seleccionar la base de datos');
}
}
else{
echo 'El sistema no se pudo conectar a la base de datos.';
exit;
}
}
public function execute($sql)
{
$result = mysql_query($sql) or die("ERROR: Ejecución de consulta: $sql<br>\n");
return $result;
}
}
我正在尝试使用变量$conexion
和$paisConexion
与两个不同的数据库建立两个连接。
我的问题是可以做这样的事情。
我的意思是假设我正在为这个类创建一个对象
$obj = new dataBase(1);
$res = obj->execute($sql);
那么该类将如何决定它必须使用哪个连接?
我想我做错了。如果有任何想法,请告诉我
先谢谢
答案 0 :(得分:1)
可以做这样的事情,但你提出的方法对我来说似乎非常有限,所以我冒昧地使用PDO编写替代方法,因为mysql_*
函数已被弃用。 Mysql_* functions official documentation here
通过使用PHP提供的PDO类,您可以获得参数化查询和事务的好处。 PDO documentation here
为了让你以后更容易添加其他连接,我写了一个包含绝对裸骨的小类。为简单起见,我留下了许多错误处理等内容,因为这只是演示。
/*
* DO NOT USE THIS IN PRODUCTION
*/
class DatabaseConnectionManager {
private $connections = [];
public function __construct(array $credentials) {
foreach($credentials as $identifier => $information) {
$this->connections[$identifier] = $this->openConnection(
$information['host'],
$information['database'],
$information['username'],
$information['password']
);
}
}
public function __destruct() {
/* If the object is destroyed before the script closes or is disrupted (fatal errors), we
* destroy all database connections as good practice.
*/
$this->connections = [];
}
public function getConnection($identifier) {
if(!array_key_exists($identifier, $this->connections)) {
throw new LogicException('Unknown database connection: ' . $identifier);
}
return $this->connections[$identifier];
}
private function openConnection($host, $database, $username, $password) {
$dsn = "mysql:host{$host};dbname={$database}";
return new PDO($dsn, $username, $password);
}
}
通过这种方式,您可以提供一系列不同的数据库连接信息。用法如下。
$credentials = [
'primary' => [
'host' => 'localhost',
'database' => 'number1',
'username' => 'awesome',
'password' => 'secret'
],
];
$connections = new DatabaseConnectionManager($credentials);
要获得可以执行不同数据库相关任务的连接(PDO对象),只需使用getConnection()
方法指定连接标识符。
$db = $connections->getConnection('primary');
重要强>
此代码不在生产准备就绪附近,仅用于演示目的。旁边没有错误检查或错误处理。如果提供了所需参数不足的数组,则会出现错误。 同时,目前无法在不对其进行硬编码的情况下为PDO对象提供选项。
希望这可以帮助你朝着正确的方向前进。
答案 1 :(得分:0)
保存与私人字段的连接并在执行中使用它:
function __construct($db='default')
{
...
$this->paisConexion = mysql_connect(...
...
}
public function execute($sql)
{
$result = mysql_query($sql, $this->paisConexion);
return $result;
}
答案 2 :(得分:0)
您无法为这两个数据库创建一个类。除非您传递一些指定使用连接的参数。您还必须为不同的连接使用两个不同的变量。并且不要使用已弃用的mysql_*
函数
class DataBase {
// only private variables accessed by functions
private $localDb, $remoteDb;
// Always use constants instead of magic numbers
const LOCAL = 1, REMOTE = 2
public function _construct() {
$this->localDb= new PDO('mysql:host=localhost;dbname=test', 'username', 'password');
$this->remoteDb= new PDO('mysql:host=remore;dbname=test2', 'username', 'password');
}
// Can't use constants in function header - - - - -v
public function execute($queryString, $params = [], $useDb = 1) {
// static:: will take variable from this class and not from parent class (if extends something)
if ($useDb == static::LOCAL) {
$db = $this->local;
} elseif ($useDb == static::REMOTE) {
$db = $this->remote;
}
$query = $db->prepare($queryString);
// Usage of prepared statement
return $query->execute($params);
}
}
$db = new DataBase();
$db->execute(
'SELECT * FROM table WHERE column = :columnVal', // named placeholders instead of tons of '?'
[':columnVal' => 5], // some parameters
DataBase::LOCAL // Constant from class
);