Commit c05b39ae authored by agaikwad's avatar agaikwad

bug fix


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@43338 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e8f556d0
......@@ -2097,9 +2097,9 @@ if(!isPreview){
isError = true;
retString = "ERROR";
int [] updateCounts = buex.getUpdateCounts();
for (int j = 0; j < updateCounts.length; i++)
for (int j = 0; j < updateCounts.length; j++)
{
System.err.println(" Statement " + i + ":" + updateCounts[i]);
System.err.println(" Statement " + j + ":" + updateCounts[j]);
}
System.err.println(" Message: " + buex.getMessage());
System.err.println(" SQLSTATE: " + buex.getSQLState());
......
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