是否存在使用JSON1扩展编译的Linux / Ubuntu的SQLite发行版。 SQLite JSON1页面上的说明只解释了如何在编译后加载扩展 - 我想避免的偏离。
答案 0 :(得分:9)
Ubuntu Xenial附带SQLite 3.11.0-1ubuntu1 ,使用JSON1扩展编译。
$ docker run --rm -it ubuntu:xenial
# apt-get update && apt-get install --no-install-recommends -y sqlite3
# echo "PRAGMA compile_options;" | sqlite3 | grep JSON1
ENABLE_JSON1