Hi folks,
I wrote a kind of key/value store using sqlite3 and C. my put_pair(key, value)
function accepts an empty key as a correct key, and in my INSERT query I use lower(hex(randomblob(16)))
to generate a good key for this inserted row.
The problem now is how to retrieve this key and return it by my function?