Uses of Interface
org.mule.module.db.internal.domain.type.DbType

Packages that use DbType
org.mule.module.db.internal.config.domain.database   
org.mule.module.db.internal.config.domain.param   
org.mule.module.db.internal.domain.connection   
org.mule.module.db.internal.domain.executor   
org.mule.module.db.internal.domain.param   
org.mule.module.db.internal.domain.type   
org.mule.module.db.internal.resolver.param   
 

Uses of DbType in org.mule.module.db.internal.config.domain.database
 

Methods in org.mule.module.db.internal.config.domain.database that return types with arguments of type DbType
 List<DbType> DbConfigFactoryBean.getCustomDataTypes()
           
protected  List<DbType> DbConfigFactoryBean.getVendorDataTypes()
           
protected  List<DbType> OracleConfigFactoryBean.getVendorDataTypes()
           
 

Method parameters in org.mule.module.db.internal.config.domain.database with type arguments of type DbType
 void DbConfigFactoryBean.setCustomDataTypes(List<DbType> customDataTypes)
           
 

Uses of DbType in org.mule.module.db.internal.config.domain.param
 

Methods in org.mule.module.db.internal.config.domain.param that return DbType
protected  DbType AbstractParamDefinitionDefinitionParser.getType(Element element)
           
 

Uses of DbType in org.mule.module.db.internal.domain.connection
 

Methods in org.mule.module.db.internal.domain.connection that return types with arguments of type DbType
 Map<Integer,DbType> AbstractDbConnection.getParamTypes(QueryTemplate queryTemplate)
           
 Map<Integer,DbType> DbConnection.getParamTypes(QueryTemplate queryTemplate)
          Determines actual parameter types for the parameters defined in a query template.
 

Uses of DbType in org.mule.module.db.internal.domain.executor
 

Methods in org.mule.module.db.internal.domain.executor with parameters of type DbType
protected  void AbstractExecutor.processInputParam(PreparedStatement statement, int index, Object value, DbType type)
           
 

Uses of DbType in org.mule.module.db.internal.domain.param
 

Methods in org.mule.module.db.internal.domain.param that return DbType
 DbType AbstractQueryParam.getType()
           
 DbType QueryParam.getType()
          Returns the parameter's type.
 

Constructors in org.mule.module.db.internal.domain.param with parameters of type DbType
AbstractQueryParam(int index, DbType type, String name)
           
DefaultInOutQueryParam(int index, DbType type, String name, Object value)
           
DefaultInputQueryParam(int index, DbType type, Object value)
           
DefaultInputQueryParam(int index, DbType type, Object value, String name)
           
DefaultOutputQueryParam(int index, DbType type, String name)
           
 

Uses of DbType in org.mule.module.db.internal.domain.type
 

Classes in org.mule.module.db.internal.domain.type that implement DbType
 class AbstractDbType
          Base class for DbType
 class DynamicDbType
          Defines a type that is dynamically resolved
 class ResolvedDbType
          Defines a data type that was resolved for a database instance
 class StructuredDbType
          Defines a structured data type
 class UnknownDbType
          Represents a data type for a template, which real type is unknown until it is instantiated
 

Fields in org.mule.module.db.internal.domain.type declared as DbType
static DbType JdbcTypes.ARRAY_DB_TYPE
           
static DbType JdbcTypes.BIGINT_DB_TYPE
           
static DbType JdbcTypes.BINARY_DB_TYPE
           
static DbType JdbcTypes.BIT_DB_TYPE
           
static DbType JdbcTypes.BLOB_DB_TYPE
           
static DbType JdbcTypes.BOOLEAN_DB_TYPE
           
static DbType JdbcTypes.CHAR_DB_TYPE
           
static DbType JdbcTypes.CLOB_DB_TYPE
           
static DbType JdbcTypes.DATALINK_DB_TYPE
           
static DbType JdbcTypes.DATE_DB_TYPE
           
static DbType JdbcTypes.DECIMAL_DB_TYPE
           
static DbType JdbcTypes.DISTINCT_DB_TYPE
           
static DbType JdbcTypes.DOUBLE_DB_TYPE
           
static DbType JdbcTypes.FLOAT_DB_TYPE
           
static DbType JdbcTypes.INTEGER_DB_TYPE
           
static DbType JdbcTypes.JAVA_OBJECT_DB_TYPE
           
static DbType JdbcTypes.LONGNVARCHAR_DB_TYPE
           
static DbType JdbcTypes.LONGVARBINARY_DB_TYPE
           
static DbType JdbcTypes.LONGVARCHAR_DB_TYPE
           
static DbType JdbcTypes.NCHAR_DB_TYPE
           
static DbType JdbcTypes.NCLOB_DB_TYPE
           
static DbType JdbcTypes.NULL_DB_TYPE
           
static DbType JdbcTypes.NUMERIC_DB_TYPE
           
static DbType JdbcTypes.NVARCHAR_DB_TYPE
           
static DbType JdbcTypes.OTHER_DB_TYPE
           
static DbType JdbcTypes.REAL_DB_TYPE
           
static DbType JdbcTypes.REF_DB_TYPE
           
static DbType JdbcTypes.ROWID_DB_TYPE
           
static DbType JdbcTypes.SMALLINT_DB_TYPE
           
static DbType JdbcTypes.SQLXML_DB_TYPE
           
static DbType JdbcTypes.STRUCT_DB_TYPE
           
static DbType JdbcTypes.TIME_DB_TYPE
           
static DbType JdbcTypes.TIMESTAMP_DB_TYPE
           
static DbType JdbcTypes.TINYINT_DB_TYPE
           
static DbType JdbcTypes.VARBINARY_DB_TYPE
           
static DbType JdbcTypes.VARCHAR_DB_TYPE
           
 

Fields in org.mule.module.db.internal.domain.type with type parameters of type DbType
static List<DbType> JdbcTypes.types
           
 

Methods in org.mule.module.db.internal.domain.type that return DbType
static DbType UnknownDbType.getInstance()
           
 DbType CompositeDbTypeManager.lookup(DbConnection connection, int id, String name)
           
 DbType MetadataDbTypeManager.lookup(DbConnection connection, int id, String name)
           
 DbType StaticDbTypeManager.lookup(DbConnection connection, int id, String name)
           
 DbType DbTypeManager.lookup(DbConnection connection, int id, String name)
          Finds a mapping for a given type ID and name
 DbType CompositeDbTypeManager.lookup(DbConnection connection, String name)
          Finds a mapping for a given type name using each composed DbTypeManager until a type is found or there are no more managers to use.
 DbType MetadataDbTypeManager.lookup(DbConnection connection, String name)
           
 DbType StaticDbTypeManager.lookup(DbConnection connection, String name)
           
 DbType DbTypeManager.lookup(DbConnection connection, String name)
          Finds a mapping for a given type name
 

Methods in org.mule.module.db.internal.domain.type with parameters of type DbType
protected  void MetadataDbTypeManager.registerType(DbType dbType)
           
 

Constructor parameters in org.mule.module.db.internal.domain.type with type arguments of type DbType
StaticDbTypeManager(List<DbType> vendorTypes)
           
 

Uses of DbType in org.mule.module.db.internal.resolver.param
 

Methods in org.mule.module.db.internal.resolver.param that return types with arguments of type DbType
 Map<Integer,DbType> DefaultParamTypeResolver.getParameterTypes(DbConnection connection, QueryTemplate queryTemplate)
           
 Map<Integer,DbType> StoredProcedureParamTypeResolver.getParameterTypes(DbConnection connection, QueryTemplate queryTemplate)
           
 Map<Integer,DbType> ParamTypeResolver.getParameterTypes(DbConnection connection, QueryTemplate queryTemplate)
          Resolves actual parameter types
 Map<Integer,DbType> QueryParamTypeResolver.getParameterTypes(DbConnection connection, QueryTemplate queryTemplate)
           
protected  Map<Integer,DbType> DefaultParamTypeResolver.getParamTypesUsingMetadata(DbConnection connection, QueryTemplate queryTemplate)
           
protected  Map<Integer,DbType> DefaultParamTypeResolver.resolveParamTypes(DbConnection connection, QueryTemplate queryTemplate, Map<Integer,DbType> metadataParamTypes)
           
 

Method parameters in org.mule.module.db.internal.resolver.param with type arguments of type DbType
protected  Map<Integer,DbType> DefaultParamTypeResolver.resolveParamTypes(DbConnection connection, QueryTemplate queryTemplate, Map<Integer,DbType> metadataParamTypes)
           
 



Copyright © 2003–2014 MuleSoft, Inc.. All rights reserved.