You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
db.execute("CREATE VIRTUAL TABLE demo USING spellfix1;")
168
168
```
169
169
170
-
### How do I use an alternative sqlite3 implementation?
170
+
### How do I use my own sqlite3 shared library?
171
171
172
-
Some packages, like pSQLite Encryption Extension ("SEE"), are intended to be ABI-compatible drop-in replacements for the sqlite3 shared object.
172
+
Some folks have strong opinions about what features they want compiled into sqlite3; or may be using a package like SQLite Encryption Extension ("SEE"). This section will explain how to get your Ruby application to load that specific shared library.
173
173
174
174
If you've installed your alternative as an autotools-style installation, the directory structure will look like this:
175
175
176
176
```
177
-
/opt/see
177
+
/opt/sqlite3
178
178
├── bin
179
179
│ └── sqlite3
180
180
├── include
@@ -199,7 +199,7 @@ You can build this gem against that library like this:
0 commit comments