summaryrefslogtreecommitdiff
path: root/doc/niels-diplom/Dateistruktur/admin/LIST/parse-exel.pl
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-30 15:43:52 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-30 15:43:52 +0100
commit8ea6ea6db019f68436a69f36aae55a9f205efa35 (patch)
tree5c367520523c42b1935491d199b4e8f3c17b4708 /doc/niels-diplom/Dateistruktur/admin/LIST/parse-exel.pl
parentec6e82dbcdc153b9973240cdff91a03b6d2dc886 (diff)
downloadsqltutor-plugin-8ea6ea6db019f68436a69f36aae55a9f205efa35.tar.gz
sqltutor-plugin-8ea6ea6db019f68436a69f36aae55a9f205efa35.tar.bz2
sqltutor-plugin-8ea6ea6db019f68436a69f36aae55a9f205efa35.zip
doc: Nils Weber doesnt have an 'e' in his firstname
Diffstat (limited to 'doc/niels-diplom/Dateistruktur/admin/LIST/parse-exel.pl')
-rwxr-xr-xdoc/niels-diplom/Dateistruktur/admin/LIST/parse-exel.pl38
1 files changed, 0 insertions, 38 deletions
diff --git a/doc/niels-diplom/Dateistruktur/admin/LIST/parse-exel.pl b/doc/niels-diplom/Dateistruktur/admin/LIST/parse-exel.pl
deleted file mode 100755
index 1574c0d..0000000
--- a/doc/niels-diplom/Dateistruktur/admin/LIST/parse-exel.pl
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use Spreadsheet::ParseExcel;
-
-my $oExcel = new Spreadsheet::ParseExcel;
-
-die "Bitte eine EXCEL-DATEI als $0 angeben!" unless @ARGV;
-
-my $oBook = $oExcel->Parse($ARGV[0]);
-my($iR, $iC, $oWkS, $oWkC);
-
-#print "FILE :", $oBook->{File} , "\n";
-#print "COUNT :", $oBook->{SheetCount} , "\n";
-#print "AUTHOR:", $oBook->{Author} , "\n"
-
-#if defined $oBook->{Author};
-
-for(my $iSheet=0; $iSheet < $oBook->{SheetCount} ; $iSheet++)
-{
- $oWkS = $oBook->{Worksheet}[$iSheet];
- #print "--------- SHEET:", $oWkS->{Name}, "\n";
- for(my $iR = $oWkS->{MinRow} ;
- defined $oWkS->{MaxRow} && $iR <= $oWkS->{MaxRow} ;
- $iR++)
- {
- print ">>>";
- for(my $iC = $oWkS->{MinCol} ;
- defined $oWkS->{MaxCol} && $iC <= $oWkS->{MaxCol} ;
- $iC++)
- {
- $oWkC = $oWkS->{Cells}[$iR][$iC];
- print ">", $oWkC->Value if($oWkC);
- }
- }
-}
-
-