Hello,

? PRAGMA compile_options;

Best Regards.


On Sat, Mar 1, 2014 at 7:01 AM, Petite Abeille <petite.abei...@gmail.com>wrote:

> Just because we can:
>
> with
> Option( name, position )
> as
> (
>   select  sqlite_compileoption_get( 1 ) as name,
>           1 as position
>
>   union all
>   select  sqlite_compileoption_get( position + 1 ) as name,
>           position + 1 as position
>   from    Option
>   where   sqlite_compileoption_get( position + 1 ) is not null
> )
> select    name
> from      Option
>
> order by  name
>
> > ENABLE_FTS3_PARENTHESIS
> > ENABLE_RTREE
> > ENABLE_STAT4
> > SYSTEM_MALLOC
> > THREADSAFE=1
>
>
>
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to