|
Does anyone know if there is a file size limitation on the XBase mod? I have a dbf file that is around 80 MB, and XBase wont parse it. My script works fine with smaller files.
use XBase;
my $table = new XBase 'mmstoffe.dbf' or die XBase->errstr;
$table->dump_records("fs" => ",", "rs" => "\n");
|