Codota Logo
AbstractJdbc3Statement.registerOutParameter
Code IndexAdd Codota to your IDE (free)

How to use
registerOutParameter
method
in
org.postgresql.jdbc3.AbstractJdbc3Statement

Best Java code snippets using org.postgresql.jdbc3.AbstractJdbc3Statement.registerOutParameter (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: postgresql/postgresql

  public void registerOutParameter(int parameterIndex, int sqlType,
      int scale) throws SQLException
  {
    // ignore scale for now
    registerOutParameter(parameterIndex, sqlType );
  }
}
origin: org.ancoron.postgresql/org.postgresql

  public void registerOutParameter(int parameterIndex, int sqlType,
      int scale) throws SQLException
  {
    // ignore scale for now
    registerOutParameter(parameterIndex, sqlType );
  }
}
origin: org.ancoron.postgresql/org.postgresql.osgi

  public void registerOutParameter(int parameterIndex, int sqlType,
      int scale) throws SQLException
  {
    // ignore scale for now
    registerOutParameter(parameterIndex, sqlType );
  }
}
org.postgresql.jdbc3AbstractJdbc3StatementregisterOutParameter

Javadoc

Registers the OUT parameter named parameterName to the JDBC type sqlType. All OUT parameters must be registered before a stored procedure is executed.

The JDBC type specified by sqlType for an OUT parameter determines the Java type that must be used in the get method to read the value of that parameter.

If the JDBC type expected to be returned to this output parameter is specific to this particular database, sqlType should be java.sql.Types.OTHER. The method #getObject retrieves the value.

Popular methods of AbstractJdbc3Statement

  • addReturning
  • checkClosed
  • createDriverResultSet
  • createParameterMetaData
  • execute
    Executes the given SQL statement, which may return multiple results, and signals the driver that the
  • executeUpdate
    Executes the given SQL statement and signals the driver that the auto-generated keys indicated in th
  • setObject
    Sets the value of the designated parameter with the given object. The second argument must be an obj

Popular in Java

  • Finding current android device location
  • getContentResolver (Context)
  • addToBackStack (FragmentTransaction)
  • setContentView (Activity)
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now