A B C D E O Q S T V 
All Classes All Packages

A

aDataSourceBuilder() - Static method in class org.quickperf.sql.config.QuickPerfSqlDataSourceBuilder
 

B

batchSize() - Method in annotation type org.quickperf.sql.annotation.ExpectJdbcBatching
Specifies a batchSize (integer) to cause the test method to fail if the used batch size is not equal.
buildProxy(DataSource) - Method in class org.quickperf.sql.config.QuickPerfSqlDataSourceBuilder
 

C

comment() - Method in annotation type org.quickperf.sql.annotation.EnableLikeWithLeadingWildcard
To comment on the reason why LIKE with leading wildcard is enabled.
comment() - Method in annotation type org.quickperf.sql.annotation.EnableQueriesWithoutBindParameters
To comment on the reason why SQL queries without bind parameters are enabled.
comment() - Method in annotation type org.quickperf.sql.annotation.EnableSameSelects
To comment on the reason why the same selects are enabled.
comment() - Method in annotation type org.quickperf.sql.annotation.EnableSameSelectTypesWithDifferentParamValues
To comment on the reason why the same select types with different parameter values are enabled.
comment() - Method in annotation type org.quickperf.sql.annotation.EnableStatements
To comment on the reason why Statement is enabled.

D

disableLikeWithLeadingWildcard() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build DisableLikeWithLeadingWildcard annotation.
DisableLikeWithLeadingWildcard - Annotation Type in org.quickperf.sql.annotation
The DisableLikeWithLeadingWildcard annotation verifies that SQL statements do not contain a LIKE with a leading wildcard (% or _).
disableQueriesWithoutBindParameters() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build DisableQueriesWithoutBindParameters annotation.
DisableQueriesWithoutBindParameters - Annotation Type in org.quickperf.sql.annotation
The DisableQueriesWithoutBindParameters annotation ensures the executed queries use bind parameters.
disableSameSelects() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build DisableSameSelects annotation.
DisableSameSelects - Annotation Type in org.quickperf.sql.annotation
The DisableSameSelects annotation verifies that at least two same SELECT statements are not executed.
disableSameSelectTypesWithDifferentParamValues() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
DisableSameSelectTypesWithDifferentParamValues - Annotation Type in org.quickperf.sql.annotation
The DisableSameSelectTypesWithDifferentParamValues annotation verifies that same SELECT statements are not executed with different parameter values.
disableStatements() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build DisableStatements annotation.
DisableStatements - Annotation Type in org.quickperf.sql.annotation
The DisableStatements annotation ensures PreparedStatement or CallableStatement is used to execute the queries.
displaySql() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build DisplaySql annotation.
DisplaySql - Annotation Type in org.quickperf.sql.annotation
This annotation displays on the console the SQL statements produced during the test execution.
displaySqlOfTestMethodBody() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build DisplaySqlOfTestMethodBody annotation.
DisplaySqlOfTestMethodBody - Annotation Type in org.quickperf.sql.annotation
The DisplaySqlOfTestMethodBody annotation displays on the console the SQL statements produced during the execution of the test method body.

E

EnableLikeWithLeadingWildcard - Annotation Type in org.quickperf.sql.annotation
Cancels behavior of DisableLikeWithLeadingWildcard.
EnableQueriesWithoutBindParameters - Annotation Type in org.quickperf.sql.annotation
EnableSameSelects - Annotation Type in org.quickperf.sql.annotation
Cancels behavior of DisableSameSelects.
EnableSameSelectTypesWithDifferentParamValues - Annotation Type in org.quickperf.sql.annotation
EnableStatements - Annotation Type in org.quickperf.sql.annotation
Cancels behavior of DisableStatements.
expectDelete(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectDelete annotation.
ExpectDelete - Annotation Type in org.quickperf.sql.annotation
The ExpectDelete annotation verifies the number of executed delete statements corresponds to the specified value.
expectInsert(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectInsert annotation.
ExpectInsert - Annotation Type in org.quickperf.sql.annotation
The ExpectInsert annotation verifies the number of executed insert statements corresponds to the specified value.
expectJdbcBatching() - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectJdbcBatching annotation.
expectJdbcBatching(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectJdbcBatching annotation.
ExpectJdbcBatching - Annotation Type in org.quickperf.sql.annotation
The ExpectJdbcBatching annotation that insert, delete, and update statements are processed through JDBC batches of batchSize elements.
expectJdbcQueryExecution(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectJdbcQueryExecution annotation.
ExpectJdbcQueryExecution - Annotation Type in org.quickperf.sql.annotation
The ExpectJdbcQueryExecution annotation verifies the number of JDBC query executions (executeQuery, executeUpdate, execute, executeLargeUpdate, executeBatch, executeLargeBatch).
expectMaxDelete(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxDelete annotation.
ExpectMaxDelete - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxDelete annotation verifies the number of executed delete statements is not greater than the specified value.
expectMaxInsert(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxInsert annotation.
ExpectMaxInsert - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxInsert annotation verifies the number of executed insert statements is not greater than the specified value.
expectMaxJdbcQueryExecution(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxJdbcQueryExecution annotation.
ExpectMaxJdbcQueryExecution - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxJdbcQueryExecution annotation verifies the maximum number of JDBC query executions (executeQuery, executeUpdate, execute, executeLargeUpdate, executeBatch, executeLargeBatch).
expectMaxQueryExecutionTime(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxQueryExecutionTime annotation.
ExpectMaxQueryExecutionTime - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxQueryExecutionTime annotation verifies the query execution time is not greater than the specified value.
expectMaxSelect(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxSelect annotation.
ExpectMaxSelect - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxSelect annotation verifies the number of executed select statements is not greater than the specified value.
expectMaxSelectedColumn(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxSelectedColumn annotation.
ExpectMaxSelectedColumn - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxSelectedColumn annotation verifies the number of updated columns is not greater than the specified value.
expectMaxUpdate(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxUpdate annotation.
ExpectMaxUpdate - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxUpdate annotation verifies the number of executed update statements is not greater to the specified value.
expectMaxUpdatedColumn(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectMaxUpdatedColumn annotation.
ExpectMaxUpdatedColumn - Annotation Type in org.quickperf.sql.annotation
The ExpectMaxUpdatedColumn annotation verifies the number of updated columns is not greater than the specified value.
expectSelect(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectSelect annotation.
ExpectSelect - Annotation Type in org.quickperf.sql.annotation
The ExpectSelect annotation verifies the number of executed select statements corresponds to the specified value.
expectSelectedColumn(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectSelectedColumn annotation.
ExpectSelectedColumn - Annotation Type in org.quickperf.sql.annotation
The ExpectSelectedColumn annotation verifies the number of updated columns corresponds to the specified value.
expectUpdate(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectUpdate annotation.
ExpectUpdate - Annotation Type in org.quickperf.sql.annotation
The ExpectUpdate annotation verifies the number of executed update statements corresponds to the specified value.
expectUpdatedColumn(int) - Static method in class org.quickperf.sql.annotation.SqlAnnotationBuilder
Allows to build ExpectUpdatedColumn annotation.
ExpectUpdatedColumn - Annotation Type in org.quickperf.sql.annotation
The ExpectUpdatedColumn annotation verifies the number of updated columns corresponds to the specified value.

O

org.quickperf.sql.annotation - package org.quickperf.sql.annotation
Provides QuickPerf SQL annotations.
org.quickperf.sql.config - package org.quickperf.sql.config
 

Q

QuickPerfSqlDataSourceBuilder - Class in org.quickperf.sql.config
 

S

SpecifiableSqlFormatter - Interface in org.quickperf.sql.config
 
specifySqlFormatter() - Method in interface org.quickperf.sql.config.SpecifiableSqlFormatter
 
SqlAnnotationBuilder - Class in org.quickperf.sql.annotation
This class helps to build SQL annotations with a global scope.

T

thresholdInMilliSeconds() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxQueryExecutionTime
Specifies a value (integer) to cause test method to fail if any query has a greater execution time.

V

value() - Method in annotation type org.quickperf.sql.annotation.ExpectDelete
Specifies a value (integer) to cause test method to fail if the number of delete statements is not equal.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectInsert
Specifies a value (integer) to cause test method to fail if the number of insert statements is not equal.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectJdbcQueryExecution
Specifies a value to cause the test method to fail if the number of JDBC query executions (executeQuery, executeUpdate, execute, executeLargeUpdate, executeBatch, executeLargeBatch) is not equal.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxDelete
Specifies a value (integer) to cause test method to fail if the number of delete statements is greater.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxInsert
Specifies a value (integer) to cause test method to fail if the number of insert statements is greater.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxJdbcQueryExecution
Specifies a value to cause the test method to fail if the number of JDBC query executions (executeQuery, executeUpdate, execute, executeLargeUpdate, executeBatch, executeLargeBatch) is greater.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxSelect
Specifies a value (integer) to cause test method to fail if the number of select statements is greater.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxSelectedColumn
Specifies a value (integer) to cause test method to fail if the number of selected columns is greater.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxUpdate
Specifies a value (integer) to cause test method to fail if the number of executed update statements is greater.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectMaxUpdatedColumn
Specifies a value (integer) to cause test method to fail if the number of updated columns is greater.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectSelect
Specifies a value (integer) to cause test method to fail if the number of select statements is not equal.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectSelectedColumn
Specifies a value (integer) to cause test method to fail if the number of selected columns is not equal.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectUpdate
Specifies a value (integer) to cause test method to fail if the number of update statements is not equal.
value() - Method in annotation type org.quickperf.sql.annotation.ExpectUpdatedColumn
Specifies a value (integer) to cause test method to fail if the number of updated columns is not equal.
A B C D E O Q S T V 
All Classes All Packages