[Simon Cozens](http://simon-cozens.org/) just [posted to the Perl 6 internals list](http://www.nntp.perl.org/group/perl.perl6.internals/2008/12/msg49626.html): > I just ran this code, which worked with the expected results: > > use DBDI; > my $conn = DBDI::DriverManager.getConnection( > "dbdi:SQLite3:test.db", "", ""); > my $stm = $conn.createStatement(); > my $rs = $stm.executeUpdate("CREATE TABLE foo (bar, baz)"); > my $stm = $conn.prepareStatement( > "INSERT INTO foo (bar, baz) VALUES (?, ?)"); > $stm.setColumn(1, 123); > $stm.setColumn(2, "Thingy"); > $stm.executeUpdate(); > > Merry Christmas, > Simon I love the smell of progress in the morning.