From: "R.. Kumar" Date: 2010-06-25T19:58:28+09:00 Subject: Re: Newbie - how to use SQLite3 ? unknown wrote: > I am just learning Ruby language. I downloaded SQLite3 database using > gem - "gem list" shows that SQLite3 is installed. > My question - how to create a database? I tried to do it from a DOS > prompt - it didn't work. > > Thanks, > > Zalek require 'sqlite3' db = SQLite3::Database.new( "test.db" ) sql = <