Database
Database
-- the class of all database files.
i1 = run "rm -f /tmp/tmpdbm*"
o1 = 0
i2 = x = openDatabaseOut "/tmp/tmpdbm"
o2 = --database /tmp/tmpdbm--
o2 : Database
i3 = x#"first" = "hi there"
o3 = "hi there"
i4 = x#"first"
o4 = "hi there"
i5 = x#"second" = "ho there"
o5 = "ho there"
i6 = scanKeys(x,print)
"first"
"second"
i7 = run "rm -f /tmp/tmpdbm*"
o7 = 0
Functions:
Go to main index.
Go to concepts index.