I am using while loop to run the logic until both the int values are same.below is the code and compiler executes the while condition, it skips.
while(paramCnt == threshold_value){
ps.setString(paramCnt++, "abc");
}
code is not working when paramCnt value is less than threshold_value. I want to run it until both values are equal.
I was not sure of where i am doing wrong. any help is appreciated.
while (paramCnt != threshold_value). This runs it while both are equal.