Commit 437bafc7 authored by kshinde's avatar kshinde

Bug fix


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@105542 ce508802-f39f-4f6c-b175-0d175dae99d5
parent df712a16
......@@ -361,7 +361,7 @@ conn = getConnection();
sql1 =" SELECT tran_id , tran_date FROM pay_ibca WHERE tran_id = ? for update nowait" ;
}
pstmt1 = conn.prepareStatement(sql1);
pstmt.setString(1,tranId);
pstmt1.setString(1,tranId);
rs1 = pstmt1.executeQuery();
if(rs1.next())
{
......
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