Package org.sqlproc.engine.jdbc.type
Class JdbcDefaultType
- java.lang.Object
-
- org.sqlproc.engine.type.SqlDefaultType
-
- org.sqlproc.engine.jdbc.type.JdbcDefaultType
-
- All Implemented Interfaces:
SqlMetaType,SqlTaggedMetaType
public class JdbcDefaultType extends SqlDefaultType
The default META type for the JDBC stack. It's used in the case there's no explicit META type declaration in the META SQL statements.- Author:
- Vladimir Hudec
-
-
Field Summary
-
Fields inherited from class org.sqlproc.engine.type.SqlDefaultType
logger
-
-
Constructor Summary
Constructors Constructor Description JdbcDefaultType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>[]getClassTypes()Returns the list of Java class types related to this META type.String[]getMetaTypes()Returns the list of names of this META type.ObjectgetProviderSqlType()Returns the type provided by the stack on top of which the SQL Processor works.-
Methods inherited from class org.sqlproc.engine.type.SqlDefaultType
addScalar, getClassTypesForDefault, setParameter, setResult
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sqlproc.engine.type.SqlMetaType
addScalarEntryLog, error, getResult, setParameterEntryLog, setResultEntryLog
-
-
-
-
Method Detail
-
getProviderSqlType
public Object getProviderSqlType()
Returns the type provided by the stack on top of which the SQL Processor works.- Returns:
- the provided type
-
getClassTypes
public Class<?>[] getClassTypes()
Returns the list of Java class types related to this META type.- Returns:
- the list of Java class types related to this META type
-
getMetaTypes
public String[] getMetaTypes()
Returns the list of names of this META type. These names can be used in the META SQL statements.- Returns:
- list of names of this META type. These names can be used in the META SQL statements
-
-