| 121 | |
| 122 | |
| 123 | void KeyValueStore::SetBuffer(const std::string& name, const DataBuffer& value) |
| 124 | { |
| 125 | if (!BNSetKeyValueStoreBuffer(m_object, name.c_str(), value.GetBufferObject())) |
| 126 | { |
| 127 | throw DatabaseException("BNSetKeyValueStoreBuffer"); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | |
| 132 | DataBuffer KeyValueStore::GetSerializedData() const |
nothing calls this directly
no test coverage detected