getVersion() 공개 메소드

Gets the version string of the database server
public getVersion ( ) : string
리턴 string The database version
예제 #1
0
 /**
  * Tests that getVersion method sends the correct query for getting the mysql version
  * @return void
  */
 public function testGetVersion()
 {
     $version = $this->Dbo->getVersion();
     $this->assertTrue(is_string($version));
 }