예제 #1
0
파일: test_dalmp.php 프로젝트: nbari/DALMP
 public function testGetAssoc()
 {
     $rs = $this->db->GetAssoc("SELECT Name, CountryCode From City WHERE District='Florida' AND population < 100000");
     $this->assertEquals(3, count($rs));
     $this->assertEquals(array('Clearwater' => 'USA', 'Miami Beach' => 'USA', 'Gainesville' => 'USA'), $rs);
 }