Uses of Interface
ece.ing3.java.projet.database.sql.queries.SQLRequest
Packages that use SQLRequest
Package
Description
-
Uses of SQLRequest in ece.ing3.java.projet.database.sql.clauses
Methods in ece.ing3.java.projet.database.sql.clauses with parameters of type SQLRequestModifier and TypeMethodDescriptionWhere.and
(String column, String comparator, SQLRequest subquery) Chain a new where clause using the boolean AND, using the provided values and subquery.Where.or
(String column, String comparator, SQLRequest subquery) Chain a new where clause using the boolean OR, using the provided values and subquery.Constructors in ece.ing3.java.projet.database.sql.clauses with parameters of type SQLRequestModifierConstructorDescriptionWhere
(String column, String comparator, SQLRequest subquery) Creates a new chainable Where clause with a subquery. -
Uses of SQLRequest in ece.ing3.java.projet.database.sql.queries
Classes in ece.ing3.java.projet.database.sql.queries that implement SQLRequestModifier and TypeClassDescriptionclass
SQL delete helper.class
SQL insert helper.class
SQL selector helper.class
SQL update helper.class
SQL helper for queries supporting Where clause.Methods in ece.ing3.java.projet.database.sql.queries with parameters of type SQLRequestModifier and TypeMethodDescriptionSQLWhereQuery.andWhere
(String column, String comparator, SQLRequest subquery) Chain a Where clause using the boolean AND, using the provided values and subquery.SQLWhereQuery.orWhere
(String column, String comparator, SQLRequest subquery) Chain a Where clause using the boolean OR, using the provided values and subquery.SQLWhereQuery.where
(String column, String comparator, SQLRequest subquery) Init a new Where clause using the provided values and subquery.