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