Uses of Class
org.apache.calcite.avatica.remote.TypedValue
-
Packages that use TypedValue Package Description org.apache.calcite.avatica Avatica JDBC framework.org.apache.calcite.avatica.remote JDBC driver that uses remote procedure calls. -
-
Uses of TypedValue in org.apache.calcite.avatica
Fields in org.apache.calcite.avatica declared as TypedValue Modifier and Type Field Description protected TypedValue[]AvaticaPreparedStatement. slots(package private) TypedValue[]AvaticaSite. slotsFields in org.apache.calcite.avatica with type parameters of type TypedValue Modifier and Type Field Description protected java.util.List<java.util.List<TypedValue>>AvaticaPreparedStatement. parameterValueBatchMethods in org.apache.calcite.avatica that return TypedValue Modifier and Type Method Description private TypedValueAvaticaSite. wrap(ColumnMetaData.Rep rep, java.lang.Object o)private TypedValueAvaticaSite. wrap(ColumnMetaData.Rep rep, java.lang.Object o, java.util.Calendar calendar)Methods in org.apache.calcite.avatica that return types with arguments of type TypedValue Modifier and Type Method Description protected java.util.List<TypedValue>AvaticaPreparedStatement. copyParameterValues()Returns a copy of the current parameter values.protected java.util.List<TypedValue>AvaticaStatement. getBoundParameterValues()Returns a list of bound parameter values.protected java.util.List<java.util.List<TypedValue>>AvaticaPreparedStatement. getParameterValueBatch()java.util.List<TypedValue>AvaticaConnection.Trojan. getParameterValues(AvaticaStatement statement)A means for anyone who has a trojan to call the protected methodAvaticaStatement.getParameterValues().protected java.util.List<TypedValue>AvaticaPreparedStatement. getParameterValues()protected java.util.List<TypedValue>AvaticaStatement. getParameterValues()Returns the list of values of this statement's parameters.Method parameters in org.apache.calcite.avatica with type arguments of type TypedValue Modifier and Type Method Description static booleanMetaImpl. checkParameterValueHasNull(java.util.List<TypedValue> parameterValues)Returns whether a list of parameter values has any null elements.java.lang.Iterable<java.lang.Object>Meta. createIterable(Meta.StatementHandle stmt, QueryState state, Meta.Signature signature, java.util.List<TypedValue> parameters, Meta.Frame firstFrame)Creates an iterable for a result set.java.lang.Iterable<java.lang.Object>MetaImpl. createIterable(Meta.StatementHandle handle, QueryState state, Meta.Signature signature, java.util.List<TypedValue> parameterValues, Meta.Frame firstFrame)Meta.ExecuteResultMeta. execute(Meta.StatementHandle h, java.util.List<TypedValue> parameterValues, int maxRowsInFirstFrame)Executes a prepared statement.Meta.ExecuteResultMeta. execute(Meta.StatementHandle h, java.util.List<TypedValue> parameterValues, long maxRowCount)Deprecated.Meta.ExecuteBatchResultMeta. executeBatch(Meta.StatementHandle h, java.util.List<java.util.List<TypedValue>> parameterValues)Executes a collection of bound parameter values on a prepared statement.Meta.FrameMetaImpl. fetch(AvaticaStatement stmt, java.util.List<TypedValue> parameterValues, long offset, int fetchMaxRowCount)Constructors in org.apache.calcite.avatica with parameters of type TypedValue Constructor Description AvaticaSite(AvaticaParameter parameter, java.util.Calendar calendar, int index, TypedValue[] slots) -
Uses of TypedValue in org.apache.calcite.avatica.remote
Fields in org.apache.calcite.avatica.remote declared as TypedValue Modifier and Type Field Description static TypedValueTypedValue. EXPLICIT_NULLFields in org.apache.calcite.avatica.remote with type parameters of type TypedValue Modifier and Type Field Description java.util.List<java.util.List<TypedValue>>Service.ExecuteBatchRequest. parameterValuesjava.util.List<TypedValue>Service.ExecuteRequest. parameterValuesMethods in org.apache.calcite.avatica.remote that return TypedValue Modifier and Type Method Description static TypedValueTypedValue. create(java.lang.String type, java.lang.Object value)static TypedValueTypedValue. fromProto(Common.TypedValue proto)Constructs aTypedValuefrom the protocol buffer representation.static TypedValueTypedValue. ofJdbc(java.lang.Object value, java.util.Calendar calendar)Creates a TypedValue from a value in JDBC representation, deducing its type.static TypedValueTypedValue. ofJdbc(ColumnMetaData.Rep rep, java.lang.Object value, java.util.Calendar calendar)Creates a TypedValue from a value in JDBC representation.static TypedValueTypedValue. ofLocal(ColumnMetaData.Rep rep, java.lang.Object value)Creates a TypedValue from a value in local representation.static TypedValueTypedValue. ofSerial(ColumnMetaData.Rep rep, java.lang.Object value)Creates a TypedValue from a value in serial representation.Method parameters in org.apache.calcite.avatica.remote with type arguments of type TypedValue Modifier and Type Method Description Meta.ExecuteResultRemoteMeta. execute(Meta.StatementHandle h, java.util.List<TypedValue> parameterValues, int maxRowsInFirstFrame)Meta.ExecuteResultRemoteMeta. execute(Meta.StatementHandle h, java.util.List<TypedValue> parameterValues, long maxRowCount)Meta.ExecuteBatchResultRemoteMeta. executeBatch(Meta.StatementHandle h, java.util.List<java.util.List<TypedValue>> parameterValues)static java.util.List<java.lang.Object>TypedValue. values(java.util.List<TypedValue> typedValues)Converts a list ofTypedValueto a list of values.Constructor parameters in org.apache.calcite.avatica.remote with type arguments of type TypedValue Constructor Description ExecuteBatchRequest(java.lang.String connectionId, int statementId, java.util.List<java.util.List<TypedValue>> parameterValues)ExecuteRequest(Meta.StatementHandle statementHandle, java.util.List<TypedValue> parameterValues, int maxRowCount)
-