Example #1
0
 /**
  * Returns used mysqli-Verions.
  *
  * @return string   mysqli-Version
  */
 public function getVersion()
 {
     return parent::get_client_info();
 }
Example #2
0
 /**
  * Returns the client version string.
  *
  * @return string
  */
 public function clientVersion()
 {
     return $this->conn->get_client_info();
 }
Example #3
0
 /**
  * Returns used MySQL client version.
  *
  * @return string
  */
 public function getClientVersion()
 {
     return $this->mysqli->get_client_info();
 }