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)
| 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 |