Originally posted by chellam selvi: What is the meaing of "precomplied statements"?
"precompiled statements" in a JDBC-context probably refers to using PreparedStatements (as opposed to regular Statements). PreparedStatements, used with the data-binding setXXX methods, are usually much more efficient to use than regular Statements, although that depends a lot on your database/driver combination.