Example #1
0
 function readTableForAppend($tableName)
 {
     debug_print("readTableForAppend<br>");
     $parser = new ResultSetParser();
     if (!($fd = $this->openTableRead($tableName))) {
         print_error_msg("readTableForAppend(): Cannot open Table {$tableName}");
         return null;
     }
     $rs = $parser->parseResultSetFromFileForAppend($fd);
     $this->closeTable($fd);
     return $rs;
 }