Re: [sqlite] What is the precise definition of an identifier?

2008-01-18 Thread drh
Lothar Scholz <[EMAIL PROTECTED]> wrote: > Hello, > > I have to write an sqlite syntax highligher for an editor > and at the moment i use the following token BNF syntax. > > ident := '_' | letter ( letter | '_' | digit )* > > Is this correct? This is correct depending on your definition of

[sqlite] What is the precise definition of an identifier?

2008-01-18 Thread Lothar Scholz
Hello, I have to write an sqlite syntax highligher for an editor and at the moment i use the following token BNF syntax. ident := '_' | letter ( letter | '_' | digit )* Is this correct? I would appreciate an additional section in the documentation that defines the few missing low level