/**
  * Get records from a list of uids
  *
  * @param int    $from
  * @param string $uids
  * @param string $select
  * @return array
  */
 public function getRecords($from, $uids, $select = '*')
 {
     $query['SELECT'] = $select;
     $query['FROM'] = $from;
     if (self::intFromVer(TYPO3_version) >= 6002000) {
         $protect = 'mysqli_real_escape_string';
     } else {
         $protect = 'mysql_real_escape_string';
     }
     $query['WHERE'] = 'uid IN (' . $protect($uids) . ')';
     $rows = tx_t3devapi_database::exec_SELECTgetRows($query, $this->conf['debug']);
     return $rows;
 }