Uses of Class
org.h2.value.Transfer
Packages that use Transfer
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains high level classes of the database and classes that don't fit in another sub-package.
Expressions include mathematical operations, simple values, and others.
Implementation of the JDBC database metadata API (package java.sql).
Implementation of row and internal result sets.
A small FTP server.
Data type and value implementations.
-
Uses of Transfer in org.h2.command
Constructor parameters in org.h2.command with type arguments of type TransferModifierConstructorDescriptionCommandRemote(SessionRemote session, ArrayList<Transfer> transferList, String sql, int fetchSize) -
Uses of Transfer in org.h2.engine
Methods in org.h2.engine with parameters of type TransferModifier and TypeMethodDescriptionvoidCalled to flush the output after data has been sent to the server and just before receiving data.static DbExceptionSessionRemote.readException(Transfer transfer) Reads an exception. -
Uses of Transfer in org.h2.expression
Methods in org.h2.expression with parameters of type TransferModifier and TypeMethodDescriptionvoidParameterRemote.readMetaData(Transfer transfer) Read the parameter meta data from the transfer object.static voidParameterRemote.writeMetaData(Transfer transfer, ParameterInterface p) Write the parameter meta data to the transfer object. -
Uses of Transfer in org.h2.jdbc.meta
Constructor parameters in org.h2.jdbc.meta with type arguments of type TransferModifierConstructorDescriptionDatabaseMetaRemote(SessionRemote session, ArrayList<Transfer> transferList) -
Uses of Transfer in org.h2.result
Methods in org.h2.result with parameters of type TransferModifier and TypeMethodDescriptionstatic voidResultColumn.writeColumn(Transfer out, ResultInterface result, int i) Write a result column to the given output.Constructors in org.h2.result with parameters of type TransferModifierConstructorDescriptionResultRemote(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 -
Uses of Transfer in org.h2.value
Methods in org.h2.value that return TransferModifier and TypeMethodDescriptionTransfer.openNewConnection()Open a new connection to the same address and port as this one.Transfer.writeBoolean(boolean x) Write a boolean.Transfer.writeByte(byte x) Write a byte.Transfer.writeBytes(byte[] data) Write a byte array.Transfer.writeBytes(byte[] buff, int off, int len) Write a number of bytes.Transfer.writeInt(int x) Write an int.Transfer.writeLong(long x) Write a long.Transfer.writeRowCount(long rowCount) Write a row count.Transfer.writeString(String s) Write a string.Transfer.writeTypeInfo(TypeInfo type) Write value type, precision, and scale.