On 22 March 2010 21:53, Bogdan Ureche <bogdan...@gmail.com> wrote:
> The pragma case_sensitive_like is not queryable, unlike other pragmas. Is
> there any reason why it's not?
>
> If not, I would like to suggest to be made queryable, for consistency.
>
> Bogdan

The setting is detectable:

sqlite>
sqlite> select 'a' like 'A';
1
sqlite> pragma case_sensitive_like=1;
sqlite>
sqlite> select 'a' like 'A';
0
sqlite>

Regards,
Simon
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to