Uses of Class
org.h2.value.Transfer
-
Packages that use Transfer Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.expression Expressions include mathematical operations, simple values, and others.org.h2.jdbc.meta Implementation of the JDBC database metadata API (package java.sql).org.h2.result Implementation of row and internal result sets.org.h2.server A small FTP server.org.h2.value Data type and value implementations. -
-
Uses of Transfer in org.h2.command
Fields in org.h2.command with type parameters of type Transfer Modifier and Type Field Description private java.util.ArrayList<Transfer>
CommandRemote. transferList
Methods in org.h2.command with parameters of type Transfer Modifier and Type Method Description private void
CommandRemote. sendParameters(Transfer transfer)
Constructor parameters in org.h2.command with type arguments of type Transfer Constructor Description CommandRemote(SessionRemote session, java.util.ArrayList<Transfer> transferList, java.lang.String sql, int fetchSize)
-
Uses of Transfer in org.h2.engine
Fields in org.h2.engine with type parameters of type Transfer Modifier and Type Field Description private java.util.ArrayList<Transfer>
SessionRemote. transferList
Methods in org.h2.engine that return Transfer Modifier and Type Method Description private Transfer
SessionRemote. initTransfer(ConnectionInfo ci, java.lang.String db, java.lang.String server)
Methods in org.h2.engine with parameters of type Transfer Modifier and Type Method Description void
SessionRemote. done(Transfer transfer)
Called to flush the output after data has been sent to the server and just before receiving data.static DbException
SessionRemote. readException(Transfer transfer)
Reads an exception. -
Uses of Transfer in org.h2.expression
Methods in org.h2.expression with parameters of type Transfer Modifier and Type Method Description void
ParameterRemote. readMetaData(Transfer transfer)
Read the parameter meta data from the transfer object.static void
ParameterRemote. writeMetaData(Transfer transfer, ParameterInterface p)
Write the parameter meta data to the transfer object. -
Uses of Transfer in org.h2.jdbc.meta
Fields in org.h2.jdbc.meta with type parameters of type Transfer Modifier and Type Field Description private java.util.ArrayList<Transfer>
DatabaseMetaRemote. transferList
Constructor parameters in org.h2.jdbc.meta with type arguments of type Transfer Constructor Description DatabaseMetaRemote(SessionRemote session, java.util.ArrayList<Transfer> transferList)
-
Uses of Transfer in org.h2.result
Fields in org.h2.result declared as Transfer Modifier and Type Field Description private Transfer
ResultRemote. transfer
Methods in org.h2.result with parameters of type Transfer Modifier and Type Method Description static void
ResultColumn. writeColumn(Transfer out, ResultInterface result, int i)
Write a result column to the given output.Constructors in org.h2.result with parameters of type Transfer Constructor Description ResultColumn(Transfer in)
Read an object from the given transfer object.ResultRemote(SessionRemote session, Transfer transfer, int id, int columnCount, int fetchSize)
-
Uses of Transfer in org.h2.server
Fields in org.h2.server declared as Transfer Modifier and Type Field Description protected Transfer
TcpServerThread. transfer
-
Uses of Transfer in org.h2.value
Methods in org.h2.value that return Transfer Modifier and Type Method Description Transfer
Transfer. openNewConnection()
Open a new connection to the same address and port as this one.Transfer
Transfer. writeBoolean(boolean x)
Write a boolean.Transfer
Transfer. writeByte(byte x)
Write a byte.Transfer
Transfer. writeBytes(byte[] data)
Write a byte array.Transfer
Transfer. writeBytes(byte[] buff, int off, int len)
Write a number of bytes.private Transfer
Transfer. writeDouble(double i)
Write a double.private Transfer
Transfer. writeFloat(float i)
Write a float.Transfer
Transfer. writeInt(int x)
Write an int.Transfer
Transfer. writeLong(long x)
Write a long.Transfer
Transfer. writeRowCount(long rowCount)
Write a row count.private Transfer
Transfer. writeShort(short x)
Write a short.Transfer
Transfer. writeString(java.lang.String s)
Write a string.Transfer
Transfer. writeTypeInfo(TypeInfo type)
Write value type, precision, and scale.
-