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
Fields in org.h2.command with type parameters of type TransferMethods in org.h2.command with parameters of type TransferConstructor 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
Fields in org.h2.engine with type parameters of type TransferMethods in org.h2.engine that return TransferModifier and TypeMethodDescriptionprivate Transfer
SessionRemote.initTransfer
(ConnectionInfo ci, String db, String server) Methods in org.h2.engine with parameters of type TransferModifier and TypeMethodDescriptionvoid
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 TransferModifier and TypeMethodDescriptionvoid
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 TransferConstructor parameters in org.h2.jdbc.meta with type arguments of type TransferModifierConstructorDescriptionDatabaseMetaRemote
(SessionRemote session, ArrayList<Transfer> transferList) -
Uses of Transfer in org.h2.result
Fields in org.h2.result declared as TransferMethods in org.h2.result with parameters of type TransferModifier and TypeMethodDescriptionstatic 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 TransferModifierConstructorDescription(package private)
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 -
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.private Transfer
Transfer.writeDouble
(double i) Write a double.private Transfer
Transfer.writeFloat
(float i) Write a float.Transfer.writeInt
(int x) Write an int.Transfer.writeLong
(long x) Write a long.Transfer.writeRowCount
(long rowCount) Write a row count.private Transfer
Transfer.writeShort
(short x) Write a short.Transfer.writeString
(String s) Write a string.Transfer.writeTypeInfo
(TypeInfo type) Write value type, precision, and scale.