-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow configuring libsqlite location #119
Comments
Is it viable if you import a module before sqlite3 module is referenced at all that just does |
Yes but that would require my app to have full Edit: ah, I didn’t realize the library downloads the sqlite3 library when the module is imported. I’m going to vendor the library and remove that. Thanks for consideration of my request. |
Closing as the design of this library prevents another mechanism. |
@mxcl It can be altered without affecting performance I believe, we can make a new, manual entry point which allows configuration and make the default one from |
Certainly would mean I don’t have to vendor and apply my mods every release! I can do the work, just didn’t think it was possible since the import mechanism seemed to be controlled by the deno runtime at module load. |
I would like to bundle my own sqlite library, and setting the env variable is not viable. Can I pass it to the Database constructor or another config function?
The text was updated successfully, but these errors were encountered: