kytschBASIC

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

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

See also