-
Notifications
You must be signed in to change notification settings - Fork 124
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
sqlalchemy double kabooms: AttributeError: 'SQLiteTypeCompiler' object has no attribute 'visit_JSON' #437
Comments
You probably need to upgrade SQLite; only more recent builds (~2015) handle JSON columns. We should probably document this somewhere. Suggestions? |
It also wouldn't be crazy to replace the JSON columns with text, I suppose. It's mostly a convenience to avoid having to explicitly serialize and deserialize. Edit: I thought I was using JSON columns more widely, but it looks like it's only one field. Definitely not worth forcing everyone to upgrade SQLite just for that. Will patch this to use text. Edit 2: Turns out I wasn't even making any use of the JSON features, so there was literally no reason not to use a String there. :p |
@yarikoptic try now? |
I think it is gone, thanks! |
Initially tried to follow README.md on python2, kaboomed, tried python3 with the same effect:
gory details
The text was updated successfully, but these errors were encountered: