-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Added sqlite3 recipe #664
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
Added sqlite3 recipe #664
Conversation
Have you tested this (maybe on its own, not via python)? In the old toolchain, the python recipe also needs some additions to build with sqlite3. |
Tested with Apsw script: https://github.com/rogerbinns/apsw/blob/master/example-code.py 03-05 00:34:07.945: I/python(28084): SQLite memory usage current 379816 max 447632 |
Because that's a sqlite wrapper. What @inclement is referring to is the builtin sqlite3 module, which will not be built if Python itself doesn't know about sqlite. |
Just like pyopenssl will work if you have openssl, but Python standard libs like urllib won't have SSL support unless Python was also compiled against openssl. |
It does not work without Apsw at the moment. See #672 |
95f2849
to
de19154
Compare
Builtin sqlite3 module now works in #672 ! |
That's right. |
No description provided.