Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CLEAR all
lcMDB = 'c:\temp\northwind.mdb'
lnConnHandle = ;
Sqlstringconnect("Driver={Microsoft Access Driver (*.mdb)};"+;
"Uid=Admin;DBQ="+m.lcMDB)
TEXT TO lcSQL noshow
SELECT * FROM Products where (Discontinued=?m.State)
ENDTEXT
state = .T.
? SQLExec(m.lnConnHandle, m.lcSQL, 'result')
SQLDisconnect(0)
Select result
Browse
SELECT * FROM Products where (Discontinued=true)
SELECT * FROM Products where (Discontinued=1)