G
Guest
I have a procedure that uses TransferText to import file(s). After they have
been imported I need to update those records. I have the update query below.
In my procedure I have:
With qdf
.Parameters("ImportFile") = strFile
.Execute
End With
Query:
PARAMETERS ImportFile Text ( 255 );
UPDATE tblPRM SET tblPRM.UnitNumber = Trim([UnitNumber]), tblPRM.ImportFlag
= False
WHERE (((tblPRM.ImportFlag)=True));
The ImportFile is not updated. I'm sure I'm just missing a small piece of
this puzzle.
Thanks
LeAnn
been imported I need to update those records. I have the update query below.
In my procedure I have:
With qdf
.Parameters("ImportFile") = strFile
.Execute
End With
Query:
PARAMETERS ImportFile Text ( 255 );
UPDATE tblPRM SET tblPRM.UnitNumber = Trim([UnitNumber]), tblPRM.ImportFlag
= False
WHERE (((tblPRM.ImportFlag)=True));
The ImportFile is not updated. I'm sure I'm just missing a small piece of
this puzzle.
Thanks
LeAnn