Package | Description |
---|---|
com.j256.ormlite.dao |
Database Access Object classes.
|
com.j256.ormlite.stmt |
SQL statement generation and processing.
|
Modifier and Type | Method and Description |
---|---|
UpdateBuilder<T,ID> |
BaseDaoImpl.updateBuilder() |
UpdateBuilder<T,ID> |
Dao.updateBuilder()
Like
Dao.queryBuilder() but allows you to build an UPDATE statement. |
UpdateBuilder<T,ID> |
RuntimeExceptionDao.updateBuilder() |
Modifier and Type | Method and Description |
---|---|
UpdateBuilder<T,ID> |
UpdateBuilder.limit(Long maxRows)
Limit the rows affected to maxRows maximum number of rows.
|
UpdateBuilder<T,ID> |
UpdateBuilder.updateColumnExpression(String columnName,
String expression)
Add a column to be set to a value for UPDATE statements.
|
UpdateBuilder<T,ID> |
UpdateBuilder.updateColumnValue(String columnName,
Object value)
Add a column to be set to a value for UPDATE statements.
|
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.