Groovy Documentation

Package groovy.org.codenarc.rule.jdbc

 

Class Summary
DirectConnectionManagementAstVisitor
DirectConnectionManagementRule The J2EE standard requires that applications use the container's resource management facilities to obtain connections to resources.
JdbcConnectionReferenceRule Check for direct use of java.sql.Connection.
JdbcResultSetReferenceRule Check for direct use of java.sql.ResultSet, which is not necessary if using the Groovy Sql facility or an ORM framework such as Hibernate.
JdbcStatementReferenceRule Check for direct use of java.sql.Statement, PreparedStatement, or CallableStatement, which is not necessary if using the Groovy Sql facility or an ORM framework such as Hibernate.
 


Groovy Documentation