You'll need to locate an MS SQL function that allows you to convert the TeleFlow date to a date format that MS SQL supports.
<br>
<br>From having dealt with some such issues, I can tell you that you might find it works if you try the following comparisons (test each, I'm not sure which, if any, will work in this case), as well:
<br>SubmissionDeadline >= Now()
<br>SubmissionDeadline >= '@DATE'
<br>SubmissionDeadline >= @DATE @TIME
<br>SubmissionDeadline >= '@DATE @TIME'
<br>
<br>Now(), in particular, is a function that is available in many databases, and all seem to do a good job of comparing/using it againt their own date/time data types.
<br>
<br>Failing all that, I would suggest consulting an MS SQL book for MS SQL specific syntax to use in date/time formatting.
|