- Equals() - Method in class org.riversun.d6.core.WhereCondition
-
Add '=' operator into WHERE clause
- execDelete(Class<? extends D6Model>) - Method in class org.riversun.d6.core.D6Crud
-
Delete the appropriate line in the specified model object
- execDelete(D6Model) - Method in class org.riversun.d6.core.D6Crud
-
Delete the appropriate lines in the specified model object
- execDelete(D6Model[]) - Method in class org.riversun.d6.core.D6Crud
-
Delete the appropriate lines in specified model objects
- execInsert(D6Model[]) - Method in class org.riversun.d6.core.D6Crud
-
Insert the specified model object into the DB
- execInsert(D6Model[], D6Inex) - Method in class org.riversun.d6.core.D6Crud
-
Insert the specified model object into the DB
- execSelectCount(Class<? extends D6Model>) - Method in class org.riversun.d6.core.D6Crud
-
Returns the total number of the lines of rows corresponding to the
specified model class
- execSelectCount(Class<? extends D6Model>, WhereCondition) - Method in class org.riversun.d6.core.D6Crud
-
Returns the total number of the lines of rows corresponding to the
specified model class
- execSelectCount(Class<? extends D6Model>, WhereCondition, Object[]) - Method in class org.riversun.d6.core.D6Crud
-
Returns the total number of the lines of rows corresponding to the
specified model class
- execSelectCount(String) - Method in class org.riversun.d6.core.D6Crud
-
Execute the SQL for number search
ex.SELECT COUNT(*) FROM table;
- execSelectCount(String, Object[]) - Method in class org.riversun.d6.core.D6Crud
-
Execute the SQL for number search
- execSelectTable(Class<? extends D6Model>) - Method in class org.riversun.d6.core.D6Crud
-
Execute select statement and returns the all lines of rows corresponding
to the specified model class as array of Objects
- execSelectTable(Class<? extends D6Model>, WhereCondition) - Method in class org.riversun.d6.core.D6Crud
-
- execSelectTable(Class<? extends D6Model>, WhereCondition, Object[]) - Method in class org.riversun.d6.core.D6Crud
-
- execSelectTable(String, Class<? extends D6Model>) - Method in class org.riversun.d6.core.D6Crud
-
Execute select statement for the single table.
- execSelectTable(String, Object[], Class<? extends D6Model>) - Method in class org.riversun.d6.core.D6Crud
-
Execute select statement for the single table.
- execSelectTableWithJoin(String, Class<? extends D6Model>...) - Method in class org.riversun.d6.core.D6Crud
-
Execute select statement for the joined multiple table.
#execSelectTableWithJoin(String, String[], Class...)
- execSelectTableWithJoin(String, Object[], Class<? extends D6Model>...) - Method in class org.riversun.d6.core.D6Crud
-
Execute select statement for the joined multiple table.
-About SQL
You can use prepared SQL.
In addition,you can also use non-wildcard ('?') SQL (=raw SQL).In this
case searchKeys must be null or empty array(size 0 array).
When you use a wildcard('?'), you must not include the "'"(=>single
quotes) to preparedSQL.
-About processing
Used when you execute the SQL that is JOIN multiple tables.
In this method, you can specify more than one model class.
When the column name specified in the annotation of the model classes is
included in the resultSet,
a value corresponding to the column name is set to the corresponding
field of model objects.
In other words, if multiple model class has the same column name, values
in the resultSet is set in the same manner for each mode class.
- execUpdate(D6Model) - Method in class org.riversun.d6.core.D6Crud
-
Update Model Object
- execUpdate(D6Model, D6Inex) - Method in class org.riversun.d6.core.D6Crud
-
Update Model Object
- execUpdateByRawSQL(String) - Method in class org.riversun.d6.core.D6Crud
-
Execute raw SQL for update