CurtTilmes / raku-dbsqlite

SQLite access for Raku
10 stars 4 forks source link

In memory database support broken #15

Open bullocp913 opened 3 years ago

bullocp913 commented 3 years ago

my $s = DB::SQLite.new(filename => ':memory'); $s.execute('create table foo (x int, y text)');

This code writes a database to a file named ':memory' instead of in memory.

Found this out by trying to use the in-memory support for a test file.