| java.lang.Object com.bostechcorp.cbesb.runtime.jdbc.JdbcVar
JdbcVar | public class JdbcVar (Code) | | JDBCVar represents an input or output parameter in the SQL Statement of a JDBCUPoC request.
The JDBCRequest and JDBCResult may have a Vector containing instances of JDBCVar. The JDBCVar
contains the datatype and value of the parameter as well as whether it is an input or output
parameter or both.
|
MODE_IN | public static int MODE_IN(Code) | | |
MODE_INOUT | public static int MODE_INOUT(Code) | | |
MODE_OUT | public static int MODE_OUT(Code) | | |
JdbcVar | public JdbcVar(int mode)(Code) | | Constructor
|
JdbcVar | public JdbcVar(int mode, int datatype, String value)(Code) | | |
JdbcVar | public JdbcVar(int mode, int datatype)(Code) | | |
getDataType | public int getDataType()(Code) | | the dataType |
getMode | public int getMode()(Code) | | the mode |
setDataType | public void setDataType(int dataType)(Code) | | Parameters: dataType - the dataType to set |
setMode | public void setMode(int mode)(Code) | | Parameters: mode - the mode to set |
setValue | public void setValue(String value)(Code) | | Parameters: value - the value to set |
|
|