Uses of Class
com.mrivanplays.sqlhelper.statement.SelectStatement
-
Packages that use SelectStatement Package Description com.mrivanplays.sqlhelper com.mrivanplays.sqlhelper.statement -
-
Uses of SelectStatement in com.mrivanplays.sqlhelper
Methods in com.mrivanplays.sqlhelper that return SelectStatement Modifier and Type Method Description SelectStatement
SQLHelper. select()
Creates a new "SELECT" query object. -
Uses of SelectStatement in com.mrivanplays.sqlhelper.statement
Methods in com.mrivanplays.sqlhelper.statement that return SelectStatement Modifier and Type Method Description SelectStatement
SelectStatement. columns(String... columns)
Mark which columns we should select.SelectStatement
SelectStatement. everything()
Mark that we should select every value in the table.SelectStatement
SelectStatement. from(String table)
Mark the table from which we're going to selectSelectStatement
SelectStatement. limit(int results)
Mark the results limit.SelectStatement
SelectStatement. where(String[] keys, Object[] values)
Mark the condition which the select should follow.
-