Ok, i'm writing a SQL language editor, and I have one problem. The tables in the northwind database that comes with SQL Server are particularly stupid, and have spaces in the names.
So I need to modify my syntax language (which is very much the same as the SQL language that comes with syntax editor) so that
'Order Details' is two tokens, but '[Order Details]' is returned as only 3 (i.e. '[', 'Order Details', ']')
So basically what I'm asking is...
How do i make syntax editor ignore space as a token delimiter if the token is surrounded by '[' and ']'
Also where is the list of updates so that I can see what has been updated in .239 to .241?
So I need to modify my syntax language (which is very much the same as the SQL language that comes with syntax editor) so that
'Order Details' is two tokens, but '[Order Details]' is returned as only 3 (i.e. '[', 'Order Details', ']')
So basically what I'm asking is...
How do i make syntax editor ignore space as a token delimiter if the token is surrounded by '[' and ']'
Also where is the list of updates so that I can see what has been updated in .239 to .241?