Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
tOracleRow java.lang.NullPointerException
I am facing the above exception when I am trying to execute the following job:
tFileInputJSON----tFlowToIterate-----tOracleRow
with the sql query---->"update employee_combine set email_new = "+((String)globalMap.get("email"))+" where id<=50"
I am retrieving the email from JSON file and inserting into an existing oracle table.
I understand that null values are being passed, and hence the database is giving the exception.
Can anyone suggest what changes I could make so that the flow works.
"update employee_combine set email_new = "+((String)globalMap.get("row1.email"))+" where id<=50"