Thread Shell-Aufruf im PerlScript (Sqlite3)
(10 answers)
Opened by Pennpann at 2011-11-16 11:06
Würde die Sache anders angehen:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 my $dir='C:/Daten/DB_Erstellung/'; my $file='import.cmd'; my $cmd='sqlite3 daten.db'; # slurp my $data=eval{local($/,@ARGV)=(undef,"$dir$file"); <>}; chdir($dir) or die("cd error: $!"); open(my $ph, '|-', $cmd) or die("open error: $!"); print $ph $data; close($ph); oder DBI nutzen: |