summaryrefslogtreecommitdiff
path: root/ex/profile.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ex/profile.pl')
-rw-r--r--ex/profile.pl25
1 files changed, 25 insertions, 0 deletions
diff --git a/ex/profile.pl b/ex/profile.pl
new file mode 100644
index 0000000..96df9ae
--- /dev/null
+++ b/ex/profile.pl
@@ -0,0 +1,25 @@
+#!/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__