MCPcopy Create free account
hub / github.com/boxbeam/RedLib / selectString

Method selectString

src/redempt/redlib/sql/SQLCache.java:142–144  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

selectMethod · 0.95

Tested by

no test coverage detected