Hi,
I want to use a function call in an Oracle insert statement.
INSERT INTO TAG_BEROEP (DT_WIJZ) VALUES (GetDate())
I've coded the following line but nothing happens
clientEntity.Fields[TagBeroepFields.DtWijz.FieldIndex].ExpressionToApply = QueryHelper.GetDate();
public static IExpression GetDate()
{
return new DbFunctionCall("GetDate", null);
}
Should this also work for updates ?
Thanks in advance