如何在 Perl 中将数组数据插入 MySQL?
我用下面的脚本解析一个文本文件。
如何将数组数据插入MySQL表中?
我已经学习了 Perl MySQL DBI 连接方法。我可以成功连接到本地 MySQL 数据库。我可以使用 MySQL 命令行创建表。
#!C:\Perl\bin\perl.exe
use strict;
use warnings;
while ( <DATA> ) {
my @rocks = split(/\s+/, $_);
foreach my $rock (@rocks) {
$rock = "\t$rock "; # put a tab in front of each element of @rocks
$rock .= "\n"; # put a newline on the end of each
print $rock ;
}
}
__DATA__
A B C D
E F G H
我想要表格浏览结果。
Item1 Item2 Itme3 Item4 A B C D E F G H
I parse a text file with the script below.
How to insert the array data to MySQL table?
I already learned Perl MySQL DBI connect method. And I can connect to local MySQL DB successfully. I can create the table with MySQL command line.
#!C:\Perl\bin\perl.exe
use strict;
use warnings;
while ( <DATA> ) {
my @rocks = split(/\s+/, $_);
foreach my $rock (@rocks) {
$rock = "\t$rock "; # put a tab in front of each element of @rocks
$rock .= "\n"; # put a newline on the end of each
print $rock ;
}
}
__DATA__
A B C D
E F G H
I want the table browse result.
Item1 Item2 Itme3 Item4 A B C D E F G H
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)