org.apache.camel.component.sql
Class SqlConstants

java.lang.Object
  extended by org.apache.camel.component.sql.SqlConstants

public final class SqlConstants
extends Object

SQL Constants.


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

Field Detail

SQL_QUERY

public static final String SQL_QUERY
See Also:
Constant Field Values

SQL_UPDATE_COUNT

public static final String SQL_UPDATE_COUNT
See Also:
Constant Field Values

SQL_ROW_COUNT

public static final String SQL_ROW_COUNT
See Also:
Constant Field Values

SQL_RETRIEVE_GENERATED_KEYS

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

See Also:
Constant Field Values

SQL_GENERATED_COLUMNS

public static final String SQL_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

SQL_GENERATED_KEYS_ROW_COUNT

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

See Also:
Constant Field Values

SQL_GENERATED_KEYS_DATA

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

See Also:
Constant Field Values


Apache Camel