I have a stored procedure to be used in my JAVA code. I know only its name, parameters, and I know that it returns nothing.
So, when I say,
stmt = cn.prepareCall( "{call UpdateAgent (?, ?) }");
stmt.setLong(1, agent);
stmt.setDouble( 2, amount);
rs = stmt.executeQue ry();
What is actually returned in 'rs'?
So, when I say,
stmt = cn.prepareCall( "{call UpdateAgent (?, ?) }");
stmt.setLong(1, agent);
stmt.setDouble( 2, amount);
rs = stmt.executeQue ry();
What is actually returned in 'rs'?