Added the FIELD_LIST and the PRIMARY_KEY to the QueryParameter

This commit is contained in:
mathias 2021-08-27 12:22:46 +02:00
parent 0ab4ae3fed
commit 6ce3671099
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -30,6 +30,16 @@ public enum QueryParameter {
*/
SELECT_LIST,
/**
* The field list of the query provided as a {@link java.util.ArrayList} that contains a {@link de.gnmyt.sqltoolkit.types.TableField}
*/
FIELD_LIST,
/**
* Tells the {@link de.gnmyt.sqltoolkit.queries.TableCreationQuery} which field is primary
*/
PRIMARY_KEY,
/**
* The row limit of a query provided as a {@link String}
*/