Server : Apache System : Linux server1.cgrithy.com 3.10.0-1160.95.1.el7.x86_64 #1 SMP Mon Jul 24 13:59:37 UTC 2023 x86_64 User : nobody ( 99) PHP Version : 8.1.23 Disable Function : NONE Directory : /usr/share/doc/perl-DBI-1.627/ex/ |
#!/usr/bin/perl -w use DBI; $dbh = DBI->connect('dbi:SQLite:dbname=ex_profile.db', '', '', { RaiseError => 1 }); $dbh->do("DROP TABLE IF EXISTS ex_profile"); $dbh->do("CREATE TABLE ex_profile (a int)"); $dbh->do("INSERT INTO ex_profile (a) VALUES ($_)", undef) for 1..100; #$dbh->do("INSERT INTO ex_profile (a) VALUES (?)", undef, $_) for 1..100; my $select_sql = "SELECT a FROM ex_profile"; $dbh->selectall_arrayref($select_sql); $dbh->selectall_hashref($select_sql, 'a'); my $sth = $dbh->prepare($select_sql); $sth->execute; while ( @row = $sth->fetchrow_array ) { } __DATA__