
编程语言-Perl
jxluoix
能够自己独立开发中小型的软件系统;
对工作态度认真、执着、诚恳;勇于专研、探索、创新;
接受新事物快、见识宽广.
展开
-
One Perl Practice With Database MYSQL
mysql_select.pl: use strict; use DBI; #my($dbh) = DBI->connect("DBI:mysql:it-community", "root", "jxcoco1128", "") or die "can't connect!\n"; my $dbh = DBI->connect("DBI:mysql:data2012-06-03 14:25:43 · 134 阅读 · 0 评论 -
Perl Installation On Windows Platform
Perl on windows platform ActivePerl http://www.activestate.com Installation http://www.activestate.com/activeperl/downloads Perl Binaries: ActivePerl-5.14.2.1402-MSWin32-x86-295...2012-06-03 14:54:14 · 112 阅读 · 0 评论 -
Another Perl Practice(ActivePerl On Window Platform)
# # Program to calculate the circumference of circle # The constant variable of PI $pi = 3.14159265; # This section is to calculate the circumference of circle # (whose radius is 12.5) $radius =...2012-06-03 19:23:34 · 90 阅读 · 0 评论 -
Another Perl Practice(ActivePerl On Window Platform)
$count = 5; $ss = "12345"; print "$ss\n" x $count; print "--------------------------\n"; print "Pls input a string: "; $ss = <STDIN>; print "Pls the count of string to display: "; $co2012-06-03 19:25:18 · 92 阅读 · 0 评论 -
Example of front end web development base perl
#!D:/usr/bin/Perl/Perl5.14.2/bin/perl.exe use strict; use DBI; use CGI; my $q = new CGI; #my $q = CGI->new; my $topicID = $q->param('id'); print "Topic ID: $topicID\n"; print "Content-type: text...原创 2012-06-19 18:05:40 · 84 阅读 · 0 评论