Environment MAC 4D v15
internal sql
Given the following code

Begin SQL
update [Tracking]
set
[Tracking].[IssueDate] = :$NewTracking_d
where
[Tracking].[PatientRef] = :$PatientRef_L
and
[Tracking].[TestRef] = 62;

End SQL


Where all fields are correct I see a warning on the Set Line and when run,
I get a parsing error

When I change the code as follows
Begin SQL
update [Tracking]
set
IssueDate = :$NewTracking_d
where
[Tracking].[PatientRef] = :$PatientRef_L
and
[Tracking].[TestRef] = 62;

End SQL

The second sample works. I have no idea as to what the difference is. Any
ideas out there

Thanks and regards
Chuck
-- 
-----------------------------------------------------------------------------------------
 Chuck Miller Voice: (617) 739-0306 Fax: (617) 232-1064
 Informed Solutions, Inc.
 Brookline, MA 02446 USA Registered 4D Developer
       Providers of 4D, Sybase & SQL Sever connectivity
          http://www.informed-solutions.com
-----------------------------------------------------------------------------------------
This message and any attached documents contain information which may be
confidential, subject to privilege or exempt from disclosure under
applicable law.  These materials are intended only for the use of the
intended recipient. If you are not the intended recipient of this
transmission, you are hereby notified that any distribution, disclosure,
printing, copying, storage, modification or the taking of any action in
reliance upon this transmission is strictly prohibited.  Delivery of this
message to any person other than the intended recipient shall not
compromise or waive such confidentiality, privilege or exemption
from disclosure as to this communication.
**********************************************************************
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:[email protected]
**********************************************************************

Reply via email to