org.apache.camel.component.jdbc
Class JdbcConstants

java.lang.Object
  extended by org.apache.camel.component.jdbc.JdbcConstants

public final class JdbcConstants
extends Object

JDBC Constants


Field Summary
static String JDBC_GENERATED_COLUMNS
          String[] or int[] input header - optional Set it to specify the expected generated columns, see:
static String JDBC_GENERATED_KEYS_DATA
          List> output header containing the generated keys retrieved
static String JDBC_GENERATED_KEYS_ROW_COUNT
          int output header giving the number of rows of generated keys
static String JDBC_RETRIEVE_GENERATED_KEYS
          Boolean input header.
static String JDBC_ROW_COUNT
           
static String JDBC_UPDATE_COUNT
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

JDBC_UPDATE_COUNT

public static final String JDBC_UPDATE_COUNT
See Also:
Constant Field Values

JDBC_ROW_COUNT

public static final String JDBC_ROW_COUNT
See Also:
Constant Field Values

JDBC_RETRIEVE_GENERATED_KEYS

public static final String JDBC_RETRIEVE_GENERATED_KEYS
Boolean input header. Set its value to true to retrieve generated keys, default is false

See Also:
Constant Field Values

JDBC_GENERATED_COLUMNS

public static final String JDBC_GENERATED_COLUMNS
String[] or int[] input header - optional Set it to specify the expected generated columns, see:

See Also:
java.sql.Statement.execute(java.lang.String, int[]), java.sql.Statement.execute(java.lang.String, java.lang.String[]), Constant Field Values

JDBC_GENERATED_KEYS_ROW_COUNT

public static final String JDBC_GENERATED_KEYS_ROW_COUNT
int output header giving the number of rows of generated keys

See Also:
Constant Field Values

JDBC_GENERATED_KEYS_DATA

public static final String JDBC_GENERATED_KEYS_DATA
List> output header containing the generated keys retrieved

See Also:
Constant Field Values


Apache CAMEL