[sqlite] Why does the stored schema strings have their beginning upper-cased?

2016-03-02 Thread Quan Yong Zhai
7 ???: SQLite mailing list<mailto:sqlite-users at mailinglists.sqlite.org> ??: Re: [sqlite] Why does the stored schema strings have their beginning upper-cased? On 2 Mar 2016, at 9:16am, Clemens Ladisch wrote: > It does not say _why_ these normalizations are applied, but I'd guess it >

[sqlite] Why does the stored schema strings have their beginning upper-cased?

2016-03-02 Thread Olivier Mascia
> Le 2 mars 2016 ? 13:26, Richard Hipp a ?crit : > > On 3/2/16, Olivier Mascia wrote: >> Hello, >> >> This is really not important, nor a bug, but since I started with SQLite I >> have been puzzled about its habit to convert to upper case the beginning of >> each schema statement (CREATE

[sqlite] Why does the stored schema strings have their beginning upper-cased?

2016-03-02 Thread Clemens Ladisch
Olivier Mascia wrote: > I have been puzzled about its habit to convert to upper case the beginning of > each schema statement > > Is there a functional reason to do this? The documentatin says: | The sqlite_master.sql column stores SQL text

[sqlite] Why does the stored schema strings have their beginning upper-cased?

2016-03-02 Thread Olivier Mascia
Hello, This is really not important, nor a bug, but since I started with SQLite I have been puzzled about its habit to convert to upper case the beginning of each schema statement (CREATE TABLE, CREATE INDEX). It looks like it stores and keeps the remaining intact, but convert the "create

[sqlite] Why does the stored schema strings have their beginning upper-cased?

2016-03-02 Thread Simon Slavin
On 2 Mar 2016, at 9:16am, Clemens Ladisch wrote: > It does not say _why_ these normalizations are applied, but I'd guess it > makes searching for specific entries easier. In an informal, non-programming way, I'll just comment that the style here is that keywords are written in upper case and

[sqlite] Why does the stored schema strings have their beginning upper-cased?

2016-03-02 Thread Richard Hipp
On 3/2/16, Olivier Mascia wrote: > Hello, > > This is really not important, nor a bug, but since I started with SQLite I > have been puzzled about its habit to convert to upper case the beginning of > each schema statement (CREATE TABLE, CREATE INDEX). It looks like it stores > and keeps the