Getdate() return error

Hi,
If using the following statement, it will return the error “Unsupported function call in DA SQL aExpression: getdate()”

RemoteDataAdapter.FillWithDASql(ServerDate, ‘select getdate() SysDate’, nil);

Hi,

DASQL doesn’t support custom functions.
However, you can use CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP functions

Hi,

Noted with thanks. If DASQL doesn’t support, I will change to use getdate() in SQL SP and call SP from DA.