We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c30ec commit 47f904eCopy full SHA for 47f904e
lib/sqlite3/database.rb
@@ -74,6 +74,15 @@ module SQLite3
74
# #enable_load_extension; however it is still necessary to call #enable_load_extensions before any
75
# subsequently invocations of #load_extension on the initialized Database object.
76
#
77
+ # You can load extensions in a Rails application by using the +extensions:+ configuration option:
78
+ #
79
+ # # config/database.yml
80
+ # development:
81
+ # adapter: sqlite3
82
+ # extensions:
83
+ # - .sqlpkg/nalgeon/crypto/crypto.so # a filesystem path
84
+ # - <%= SQLean::UUID.to_path %> # or ruby code returning a path
85
86
class Database
87
attr_reader :collations
88
0 commit comments