lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>It wouldn't hurt if the framework contained some helper methods
>that would allow to easily use such disk based DB as backend for
>table/hash constructs in lua. Something like:

gdbm does provide table proxies for databases, so that you can write

 db.key = value
 print (db["rrw"])

Perhaps this is also available in luacdb.
--lhf