/**
  * Stored routine with designation type rows_with_key must return empty array when no rwos are selected.
  */
 public function test2()
 {
     $rows = DataLayer::testRowsWithKey1WithLob(0, 'blob');
     $this->assertInternalType('array', $rows);
     $this->assertCount(0, $rows);
 }