|
NAMEsnobol4sqlite3dbm - "dbm" style interface for SNOBOL4 using SQLite3SYNOPSIS-INCLUDE 'sqlite3dbm.3' dbhandle = SQL3DBM_OPEN(file,flags,mode) SQL3DBM_CLOSE(dbhandle) SQL3DBM_STORE(dbhandle,key,datum,flags) datum = SQL3DBM_FETCH(dbhandle,key) SQL3DBM_DELETE(dbhandle,key) key = SQL3DBM_FIRSTKEY(dbhandle) key = SQL3DBM_NEXTKEY(dbhandle) SQL3DBM_ERRMSG(dbhandle) DESCRIPTIONA DBM compatible interface for snobol4(1) using the sqlite3 embedded database engine, and allows concurrent access by multiple processes.
COMPATIBILITYdatabase compatible with Python sqlite3dbmSEE ALSOsnobol4(1), snobol4dbm(3), sqlite3(1)AUTHORPhilip L. Budne
Visit the GSP FreeBSD Man Page Interface. |