Monks
I am using DB_File with Hash to store data.I am storing data in the format of Key|Value.My question is what should I do, if I want to read the data in the same order as Inserted.To make it clear, if I inserted 2|v1 and 3|v2, what should I do to read 2|v1 first follwed by 3|v2.
Note: I tried using seq($key,$val,R_FIRST) and then using R_NEXT but no luck.
Please help