Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Inserting Datefield into Remote SQL Fails
Message
 
To
18/09/2008 15:00:00
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Vista
Network:
Windows 2008 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01348719
Message ID:
01348721
Views:
13
>We have the following code that inserts records into a remote sql Server 2005 table. However it fails, I think, because the hold_date might be empty.
>
>Insert INTO remotehistory (;
>ordernum, custnum, hold_date, address;
>VALUES (;
>Changed.order, changed.custnum, changed.hold_date, changed_address;
>)
>
>If that's the case, how do I code that so if there is no hold_date the insert works?
>If that's not the case, what else could my problem be?
>Many thanks.

Try
Insert INTO remotehistory (;
ordernum, custnum, hold_date, address;
VALUES (;
Changed.order, changed.custnum, IIF(EMPTY(changed.hold_date),'',changed.hold_date) , changed_address;
)
_______________________________________________________________
Testing displays the presence, not the absence of bugs.
If a software application has to be designed, it has to be designed correctly!
_______________________________________________________________
Vladimir Zografski
Systems Analyst
Previous
Reply
Map
View

Click here to load this message in the networking platform