Gets the cached value for a String row, or queries it if it has not been cached yet @param primaryKeys The primary keys used to access the row @return The String value
(Object... primaryKeys)
| 140 | * @return The String value |
| 141 | */ |
| 142 | public String selectString(Object... primaryKeys) { |
| 143 | return (String) select(o -> sql.querySingleResultString(selectQuery, primaryKeys), primaryKeys); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Gets the cached value for a Long row, or queries it if it has not been cached yet |
nothing calls this directly
no test coverage detected