From: Tom Reilly Date: 2009-03-25T21:38:58+09:00 Subject: ruby sqlite error Can anyone tell me how to correct the following error? RUBY PROGRAM: --------------------- require 'sqlite3' p "open db" db = SQLite3::Database.new( "data.db" ) p "db close" db.close ------------------- ERROR: >ruby dbtest.rb ./sqlite3.dll: 127: The specified procedure could not be found. - Init_sqlite3 (LoadError) ./sqlite3.dll from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require' from dbtest.rb:2 >Exit code: 1 ------------------- SYSTEM CONFIGURATION Windows Vista sqlite3.dll is in the same directory as the program - windows version ruby 1.8.6 (2007-03-13 patchlevel 0) [i386-mswin32] gem sqlite3-ruby-1.2.0-mswin32 I'd appreciate any information available. Thanks Tom Reilly