Calling a Function in a Database: call functions with IN, OUT, and IN/OUT parameters. : StoredProcedure « Database « Java Tutorial






import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.DriverManager;

public class Main {
  public static void main(String[] argv) throws Exception {
    String driverName = "com.jnetdirect.jsql.JSQLDriver";
    Class.forName(driverName);

    String serverName = "127.0.0.1";
    String portNumber = "1433";
    String mydatabase = serverName + ":" + portNumber;
    String url = "jdbc:JSQLConnect://" + mydatabase;
    String username = "username";
    String password = "password";

    Connection connection = DriverManager.getConnection(url, username, password);
    CallableStatement cs = connection.prepareCall("{? = call myfunc}");

    // Register the type of the return value
    int intValue = 0;
    cs.registerOutParameter(1, intValue);

    // Execute and retrieve the returned value
    cs.execute();
    String retValue = cs.getString(1);

  }
}








20.17.StoredProcedure
20.17.1.Call a procedure with one IN parameter
20.17.2.Call a procedure with one OUT parameter
20.17.3.Call a procedure with one IN/OUT parameter
20.17.4.Calling a Function in a Database: call functions with IN, OUT, and IN/OUT parameters.
20.17.5.Call a function with one IN parameter; the function returns a VARCHAR
20.17.6.Call a function with one OUT parameter; the function returns a VARCHAR
20.17.7.Call a function with one IN/OUT parameter; the function returns a VARCHAR
20.17.8.Getting the Stored Procedure Names in a Database: retrieves the names of all stored procedures in a database.
20.17.9.Stored procedure with Input/Output parms and a ResultSet