module SQLite3
SQLite3
is a wrapper around the popular database sqlite.
For an example of usage, see SQLite3::Database
.
Constants
- SQLITE_LOADED_VERSION
- SQLITE_VERSION
- SQLITE_VERSION_NUMBER
- VERSION
Public Class Methods
Source
# File lib/sqlite3/version.rb, line 16 def self.const_missing(name) return super unless name == :Version warn(<<-eowarn) if $VERBOSE #{caller[0]}: SQLite::Version will be removed in sqlite3-ruby version 2.0.0 eowarn VersionProxy end
Calls superclass method
Source
# File lib/sqlite3.rb, line 14 def self.threadsafe?; threadsafe > 0; end
Was sqlite3 compiled with thread safety on?