in reply to .ods file
If your '.ods' file is a spreadsheet export this file to '.csv' file and open that file and use spite function and get data
Try the following code for simple .ods file, your .ods file content will be in the "@arr" use it in the query.
open(FILEHAND,"ex1.csv") || die "File can't be open\n"; my $f_line=<FILEHAND>; $f_line=~ s/\"//g; my @arr=split /\,/ ,$f_line;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: .ods file
by CountZero (Bishop) on Mar 14, 2009 at 11:32 UTC |