OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
libdbi-perl
/
examples
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/31/2023 12:34:58 PM
rwxr-xr-x
📄
corogofer.pl
704 bytes
07/30/2021 11:25:50 AM
rw-r--r--
📄
perl_dbi_nulls_test.pl.gz
2.45 KB
07/30/2021 11:25:50 AM
rw-r--r--
📄
profile.pl
594 bytes
07/30/2021 11:25:50 AM
rw-r--r--
📄
test.pl.gz
2.28 KB
07/30/2021 11:25:50 AM
rw-r--r--
Editing: profile.pl
Close
#!/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__