kytschBASIC

Put down that phone!
Please view me on real computer.

DSET

Update data in the database

Example

REM Define the database connection and assign the results to the menu# variable.
DATA menu#
	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 Select all entries from the menu table.
	DSET "counter=counter+1"

	REM Condition the select to those that aren't deleted.
	DWHERE "id = 1"
END DATA

See also