Package oracle.jdbc

Examples of oracle.jdbc.OracleCallableStatement.execute()


  }
 
  public int executeCallableStatement(String query) throws SQLException{
    OracleCallableStatement cs = (OracleCallableStatement) con.prepareCall(query);
    cs.registerOutParameter(1, OracleTypes.NUMBER);
    cs.execute();
    return cs.getInt(1);
  }

  public String Hent_String(int col, String Execute) throws SQLException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.