Deletes a row from the table by its primary keys, and removes it from the cache. This operation will always use a query. @param primaryKeys The keys to use to delete the row
(Object... primaryKeys)
| 89 | * @param primaryKeys The keys to use to delete the row |
| 90 | */ |
| 91 | public synchronized void delete(Object... primaryKeys) { |
| 92 | remove(primaryKeys); |
| 93 | sql.execute(deleteQuery, primaryKeys); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Removes a cached value, but does not affect the table |