LevelDB C iterator
问题 I need to iterate through the leveldb database in c language - https://github.com/google/leveldb/blob/master/include/leveldb/c.h. Everything works except iterating.The result goes with some binary noise data: key: value1 key: value2 key#&^$&*# value one1(*@(# value1 two2%*@( value2 With $&*#, etc. symbols I showed the binary output, stackoverflow does not allow to put here binary output. The code: #include <leveldb/c.h> #include <stdio.h> int main() { leveldb_t *db; leveldb_options_t *options