MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / getParameters

Method getParameters

java/java/de/crupp/upscaledb/Database.java:312–317  ·  view source on GitHub ↗

Retrieve the current value for a given Database setting Only those values requested by the parameter array will be stored. @param params A Parameter list of all values that should be retrieved More information: <a href="http://files.upscaledb.com/documentation/html/group__ups__database.h

(Parameter[] params)

Source from the content-addressed store, hash-verified

310 * More information: <a href="http://files.upscaledb.com/documentation/html/group__ups__database.html#gabde70c30853345c210ec0ac8d46b46fc">C documentation</a>
311 */
312 public void getParameters(Parameter[] params)
313 throws DatabaseException {
314 int status = ups_db_get_parameters(m_handle, params);
315 if (status != 0)
316 throw new DatabaseException(status);
317 }
318
319 /**
320 * Get key count

Callers 1

testGetParametersMethod · 0.95

Calls 1

ups_db_get_parametersMethod · 0.95

Tested by 1

testGetParametersMethod · 0.76