JavaToPerlNowVB
Programmer
I have this query in access, where it takes some information from the form to complete its task
when it enter the date to the form that get feeded to the query and click update it doesn't do anything.
But when I do same update statement in direct sql like this..
It works fine where it get update only the date that i want to update.
Please helpout with this, thanks
Code:
UPDATE GISADM_GNDLINEFACILITYMAINTPOLE SET GISADM_GNDLINEFACILITYMAINTPOLE.WO = [Forms]![MainSearchForm]![New_WorkOrder_Text]
WHERE (((GISADM_GNDLINEFACILITYMAINTPOLE.WO)=[Forms]![MainSearchForm]![WorkOrder_Text]) AND ((GISADM_GNDLINEFACILITYMAINTPOLE.PREFIX)=[Forms]![MainSearchForm]![Prefix_Text]) AND ((GISADM_GNDLINEFACILITYMAINTPOLE.SUFFIX)=[Forms]![MainSearchForm]![Suffix_Text]));
But when I do same update statement in direct sql like this..
Code:
update gisadm.gndlinefacilitymaintpole set wo='1049031' where wo='1049037' and prefix='105110' and suffix='31';
Please helpout with this, thanks