- Tworzenie nowego połączenia dla każdej klasy nie jest dobrym pomysłem. Może być zmodularyzowany dla Ciebie, ale Twój serwer mysql zostanie wkrótce nadęty z
too may connections
błąd.
Proponuję użyć wzorca singleton i trochę 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
}
}