kv_version()

#include <kvstore.h>

kv_error_t 
kv_version(kv_impl_t *impl, kv_int_t *major,
           kv_int_t *minor, kv_int_t *patch) 

Identifies the Oracle NoSQL Database version information. Versions consist of major, minor and patch numbers.

Parameters

impl

The impl is the implementation structure used to open the KV Store. It is created using kv_create_jni_impl().

major

The major parameter identifies the store's major release number.

minor

The minor parameter identifies the store's minor release number.

patch

The patch parameter identifies the store's patch release number.

See Also

Store and Library Operations