将日期传递给上下文变量

时间:2015-11-30 15:01:53

标签: talend

我正在尝试将日期从表传递给上下文变量。之后,我想在sql查询中使用此变量来获取晚于该日期的数据。

我曾经tJavarow,我的变量似乎有空值。

第一个表位于Postgresql中,第二个表位于Mysql中。

我的设置日期为" yyyy-MM-dd HH:mm:ss"在编辑架构中。

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

如果在SQL查询中使用Date类型上下文变量,则需要将其转换为具有正确模式的String。尝试这样做:

`created_at` > '" + TalendDate.formatDate("yyyy-MM-dd HH:mm:ss", context.created_at) + "' "