- Vytvořit nové připojení pro každou třídu není dobrý nápad. Může být pro vás modularizován, ale váš server mysql bude brzy přeplněn
too may connections
chyba.
Doporučuji použít singleton vzor a nějaké OO.
class Singleton{
private static $instance=null;
public function connection(){
if(self::$instance==null){
self::$instance = mysql_connect(); // define it in your way,
}
return self::$connection;
}
}
class TableA extends Singleton{
function find($id){
$query="select * from `A` where `id`='$id'";
mysql_query($query, $this->connection());
... // other codes
}
}