congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
Call$OutParamArgument.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.jdbi.v3.core.statement.Call$OutParamArgument
constructor

Best Java code snippets using org.jdbi.v3.core.statement.Call$OutParamArgument.<init> (Showing top 4 results out of 315)

origin: org.jdbi/jdbi3

/**
 * Register a positional output parameter
 * @param position the parameter position (zero-based)
 * @param sqlType an SQL type constant as defined by {@link java.sql.Types} or by the JDBC vendor.
 * @param mapper a mapper which converts the {@link CallableStatement} to a desired output type.
 * @return self
 */
public Call registerOutParameter(int position, int sqlType, CallableStatementMapper mapper)
{
  getBinding().addPositional(position, new OutParamArgument(sqlType, mapper, null));
  return this;
}
origin: org.jdbi/jdbi3

/**
 * Register a named output parameter
 * @param name the parameter name
 * @param sqlType an SQL type constant as defined by {@link java.sql.Types} or by the JDBC vendor.
 * @param mapper a mapper which converts the {@link CallableStatement} to a desired output type.
 * @return self
 */
public Call registerOutParameter(String name, int sqlType, CallableStatementMapper mapper)
{
  getBinding().addNamed(name, new OutParamArgument(sqlType, mapper, name));
  return this;
}
origin: jdbi/jdbi

/**
 * Register a named output parameter
 * @param name the parameter name
 * @param sqlType an SQL type constant as defined by {@link java.sql.Types} or by the JDBC vendor.
 * @param mapper a mapper which converts the {@link CallableStatement} to a desired output type.
 * @return self
 */
public Call registerOutParameter(String name, int sqlType, CallableStatementMapper mapper) {
  getBinding().addNamed(name, new OutParamArgument(sqlType, mapper, name));
  return this;
}
origin: jdbi/jdbi

/**
 * Register a positional output parameter
 * @param position the parameter position (zero-based)
 * @param sqlType an SQL type constant as defined by {@link java.sql.Types} or by the JDBC vendor.
 * @param mapper a mapper which converts the {@link CallableStatement} to a desired output type.
 * @return self
 */
public Call registerOutParameter(int position, int sqlType, CallableStatementMapper mapper) {
  getBinding().addPositional(position, new OutParamArgument(sqlType, mapper, null));
  return this;
}
org.jdbi.v3.core.statementCall$OutParamArgument<init>

Popular methods of Call$OutParamArgument

  • map

Popular in Java

  • Finding current android device location
  • requestLocationUpdates (LocationManager)
  • compareTo (BigDecimal)
  • getApplicationContext (Context)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • JPanel (javax.swing)
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now