Yes, the way to parse and validate a SQL select statement without executing it, using the Teradata JDBC Driver, is to prepare the SQL statement:
PreparedStatement ps = con.prepareStatement("select * from mytable");
↧