function cubrid_mysql_data_seek($result, $row_number)
{
    return cubrid_data_seek($result, $row_number);
}
示例#2
0
 /**
  * Data Seek
  *
  * Moves the internal pointer to the desired offset. We call
  * this internally before fetching results to make sure the
  * result set starts at zero
  *
  * @access private
  * @return array
  */
 function _data_seek($n = 0)
 {
     return cubrid_data_seek($this->result_id, $n);
 }
示例#3
0
 /**
  * @group arnia-wrong-parameters
  */
 public function testCubridDataSeek3()
 {
     if (OUTPUT_FUNCTION_NAME == true) {
         echo "\r\nRunning: " . __FUNCTION__ . " = ";
     }
     try {
         $this->assertTrue($this->createTestTable(), "Failed to create the test table.");
         $this->sql = "SELECT * FROM test_table";
         $this->req = cubrid_execute($this->con, $this->sql);
         $val = cubrid_data_seek($this->req, -1);
         $this->assertTrue(FALSE, "Expected Exception not thrown.");
     } catch (Exception $e) {
         //echo $e->getMessage()."\r\n";
         $this->assertEquals(0, cubrid_error_code());
         $this->assertEquals(0, cubrid_error_code_facility());
         $this->assertEquals('', cubrid_error_msg());
     }
     $this->deleteTestTable();
 }