mirror of
https://github.com/mistergibson/gxg-framework.git
synced 2026-08-15 03:46:00 -07:00
DB Stub tweaks
This commit is contained in:
parent
9dce93a455
commit
b1e71001cc
3 changed files with 12 additions and 0 deletions
|
|
@ -1 +1,5 @@
|
||||||
#
|
#
|
||||||
|
if defined?(::External::Database::Mysql)
|
||||||
|
else
|
||||||
|
require "mysql2"
|
||||||
|
end
|
||||||
|
|
@ -1 +1,5 @@
|
||||||
#
|
#
|
||||||
|
if defined?(::External::Database::Postgres)
|
||||||
|
else
|
||||||
|
require "pg"
|
||||||
|
end
|
||||||
|
|
@ -1 +1,5 @@
|
||||||
#
|
#
|
||||||
|
if defined?(::External::Database::Sqlite)
|
||||||
|
else
|
||||||
|
require "sqlite3"
|
||||||
|
end
|
||||||
Loading…
Reference in a new issue