DSET
Update data in the database
Example
DATA
REM Open the database connection from the config file labelled kytschBASIC.
DOPEN "kytschBASIC"
REM Read from the menu table in the database.
DREAD "menu"
REM Update counter by adding one to it.
DSET "counter=counter+1"
REM Where the entry ID is number 1.
DWHERE "id = 1"
REM Execute the query.
DEXEC
END DATA