Get all tokens from SQL parsing based on dialect type, including their string values @param sql SQL statement to parse @param dbType Database type (dialect) @return List of TokenInfo objects containing token and corresponding stringVal pairs (excluding comments)
(String sql, DbType dbType)
| 2378 | * @return List of TokenInfo objects containing token and corresponding stringVal pairs (excluding comments) |
| 2379 | */ |
| 2380 | public static List<TokenInfo> getAllTokens(String sql, DbType dbType) { |
| 2381 | return getAllTokens(sql, dbType, false); |
| 2382 | } |
| 2383 | |
| 2384 | /** |
| 2385 | * Get all tokens from SQL parsing based on dialect type, including their string values |