使用JSON1的Ubuntu 16.04上的SQLite

使用JSON1的Ubuntu 16.04上的SQLite,sqlite,sqlite-json1,Sqlite,Sqlite Json1,是否有针对Linux/Ubuntu的SQLite发行版,该发行版使用JSON1扩展编译。SQLite JSON1页面上的说明仅解释了编译后如何加载扩展,这是一个我希望避免的离题。Ubuntu Xenial附带了SQLite 3.11.0-1ubuntu1,它是使用JSON1扩展编译的 $ docker run --rm -it ubuntu:xenial # apt-get update && apt-get install --no-install-recommends -y

是否有针对Linux/Ubuntu的SQLite发行版,该发行版使用JSON1扩展编译。SQLite JSON1页面上的说明仅解释了编译后如何加载扩展,这是一个我希望避免的离题。

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

完美的您不仅告诉我默认情况下它是可用的,还告诉我现在要验证它是否可用。回答得好。