If the information is documented, it should be in SQL Server Books On-line,
which should have been installed along with the database software, and can be
referenced at Microsoft's site, and is probably downloadable.
Quote:
> Hi,
> Is there a list of all the codes used for parsing SQL with the
> MSSQLParser.vbSQLParser object?
> Example:
> SQL Code:
> Select * From MyTable Where MyField = 'TEST' and OtherField = 'Something'
> Parsed:
> \cf1 Select\cf \cf5 *\cf \cf1 From\cf \cf10 MyTable\cf \cf1 Where\cf
> \cf10 MyField\cf \cf5 =\cf \cf6 'TEST'\cf \cf5 and\cf \cf10
> OtherField\cf \cf5 =\cf \cf6 'Something'\cf
> I would like to know all the \cf?? codes and what they mean? Is this
> documented somewhere???
> Thanks,
> Pete