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

2008-01-18 Thread Lothar Scholz
Hello Igor, Saturday, January 19, 2008, 1:26:26 AM, you wrote: IT> In addition to that, in SQL any string enclosed in double quotes is also IT> an identifier. E.g. these are valid statements: IT> Further, SQLite also interprets strings enclosed in square brackets as IT> identifiers (for

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

2008-01-18 Thread Igor Tandetnik
Lothar Scholz wrote: 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 )* I believe dollar sign is allowed in the middle (as the first character, it denotes a named parameter). In