Can I do this with SQL?
a=1
use mytable && contain: number,name field
set order to number
seek(a)
if found()
messagebox("found it"
else
messagebox("nope"
endi
what I already done :
a=1
select * from mytable where number=a into my cursor
than what shuld I do next with the cursor mycursor? I use VFP5
Thank you in advance
a=1
use mytable && contain: number,name field
set order to number
seek(a)
if found()
messagebox("found it"
else
messagebox("nope"
endi
what I already done :
a=1
select * from mytable where number=a into my cursor
than what shuld I do next with the cursor mycursor? I use VFP5
Thank you in advance