Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
We are trying to connect to informix database and load the data to our warehouse.
Above scenario works fine without issues.
Now we did implemented same approach using TDBRow(Informix), and passed the select statement in it, now it failed
The out we got on checking with tlogrow was
Columnanme
NULL
Works fine with TDBINPUT
(Informix)
, but fails with TDBROW(Informix)Any thoughts?
Regards,
Ram
Hello,
tXXXRow component is usually used to any type of sql statement excepts select statement, we use txxxInput component to execute a select statement, if you use use tXXXRow to execute a select statement, it returns a record set, and you are required to use a tParseRecordSet component after tXXXRow to parse the record sets.
Best regards
Sabrina
Hello,
tXXXRow component is usually used to any type of sql statement excepts select statement, we use txxxInput component to execute a select statement, if you use use tXXXRow to execute a select statement, it returns a record set, and you are required to use a tParseRecordSet component after tXXXRow to parse the record sets.
Best regards
Sabrina
Thanks for the step by step tutorial. Works like a charm!