Hi,
I have an attribute (timeattribute) that I would like to save to an oracle table
timeattribute = '2017-06-30 18:39:05'
Within a sqlexecuor, I'm doing something like:
INSERT INTO TEST_T
(
OBJECTID,
TIMEATTRIBUTE
)
VALUES
(
@Value(OBJECTID),
'@Value(TIMEATTRIBUTE)'
)
and it failed. How can I make it work?
FYI, the query
INSERT INTO TEST_T
(
OBJECTID,
TIMEATTRIBUTE
)
VALUES
(
@Value(OBJECTID),
sysdate
)
worked perfectly within the sqlexecutor.
Thanks