cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Anywhere 17.0.10.6285: Date + Time field in remote proxy select statement

fvestjens
Participant
896
create variable aDate date;
create variable aTime time;
create variable aDateTime Datetime;

set aDate = current date;
set aTime = current time;
set aDateTime = aDate + aTime;

select aDate, aTime, aDateTime, *
from *remoteTable*

The propery aDateTime wil show the correct date time, but if you add aDate+aTime the system will give an error. This is because the space is removed between the date and time.

Is this the expected behaviour or a bug?

Accepted Solutions (0)

Answers (0)