db = UnQLite('test.db')
data = db.collection('data')
print(data.fetch(0))
This works.
Now, how do I fetch each record and extract the necessary fields from it?
I am looking for something like
db = UnQLite('test.db')
data = db.collection('data')
for i in range(data.size()???)
print(data.fetch(i))
There isn't any size() method on the collection. Any help is appreciated.