DbObject: add hasConnection() helper method
This commit is contained in:
parent
f300bdca89
commit
d522cb8d2b
|
@ -472,10 +472,16 @@ abstract class DbObject
|
||||||
return $this->db;
|
return $this->db;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function hasConnection()
|
||||||
|
{
|
||||||
|
return $this->connection !== null;
|
||||||
|
}
|
||||||
|
|
||||||
public function getConnection()
|
public function getConnection()
|
||||||
{
|
{
|
||||||
return $this->connection;
|
return $this->connection;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lädt einen Datensatz aus der Datenbank und setzt die entsprechenden
|
* Lädt einen Datensatz aus der Datenbank und setzt die entsprechenden
|
||||||
* Eigenschaften dieses Objekts
|
* Eigenschaften dieses Objekts
|
||||||
|
|
Loading…
Reference in New Issue