Get DB2-specific parser instance
问题 I'm trying to create a simple plugin where I can paste in an sql query from our logs and have it display the column names and inserted values in a table. I've got it working, except for dates and times, because our DB2 database uses special values like {d: '2014-07-03'} rather than '2014-07-03' . How do I figure out what values I need to pass to SQLQueryParserManagerProvider.getInstance().getParserManager( dbProduct , dbVersion ); to get the right parser that can handle these values? 回答1: Set