Commit 297e7364 authored by vvengurlekar's avatar vvengurlekar

WorkorderIssConf.java - solved resultset related bug


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@195745 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3170f197
......@@ -495,7 +495,7 @@ public class WorkorderIssConf extends ActionHandlerEJB implements WorkorderIssCo
pstmt1 = conn.prepareStatement(sql);
//rs = pstmt.executeQuery();
rs1 = pstmt1.executeQuery(); //[changed rs to rs1 and pstmt to pstmt1 by Pavan R ]
if (rs.next())
if (rs1.next())
{
useInvstatus = rs1.getString(1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment