DotNetGnat
Programmer
Hi guys,
I have a stored query in Access that works fine...
but i tried to do something similar for the update statement...
and it does not work...any suggestions...
-DNG
I have a stored query in Access that works fine...
Code:
PARAMETERS qrystr text(255)
Select * from mytable WHERE myfield = qrystr
Code:
PARAMETERS qrytstr text(255), id int
UPDATE mytable
set myfield = qrtystr
WHERE recid = id
and it does not work...any suggestions...
-DNG