From: Ryan Davis Date: 2007-11-19T16:12:23+09:00 Subject: Re: create, read, update an sqlite database On Nov 18, 2007, at 21:49 , Thufir wrote: > thufir@arrakis ~/rubyCode/sqlite $ cat seven.rb > require 'sqlite3' > > db = SQLite3::Database.new( "test.db" ) > rows = db.execute( "select * from test" ) [cut lots of shit that only makes helping you harder] > Wasn't it supposed to create test.db in line three? http://sqlite-ruby.rubyforge.org/ "new( file_name, mode=0 ) Create a new Database object that opens the given file. The mode parameter has no meaning yet, and may be omitted. If the file does not exist, it will be created if possible."