tags:

views:

44

answers:

0

I need to have a list of all SQL keywords of particular DB engine in my Java program.

I know that I can use DatabaseMetaData.getSQLKeywords() method from JDBC to list all DB specific SQL keywords that are not in ANSI:2003

But how I get a list of all ANSI (standard) SQL keywords?

P.S. don't suggest to hardcode them, I still hope someone already hardcoded them somewhere. Maybe in some Hibernate utils?