mirror of
https://github.com/mistergibson/gxg-framework.git
synced 2026-08-15 03:46:00 -07:00
11 lines
No EOL
313 B
Ruby
11 lines
No EOL
313 B
Ruby
# See: https://github.com/crystal-lang/crystal-sqlite3
|
|
# See: http://sequel.jeremyevans.net/documentation.html
|
|
# See: https://github.com/jeremyevans/sequel
|
|
if defined?(::External::Database::Sqlite)
|
|
else
|
|
if ::RUBY_ENGINE == "jruby"
|
|
require 'jdbc/sqlite3'
|
|
else
|
|
require "sqlite3"
|
|
end
|
|
end |