Package org.h2.server.pg
Class PgServerThread.Prepared
- java.lang.Object
-
- org.h2.server.pg.PgServerThread.Prepared
-
- Enclosing class:
- PgServerThread
static class PgServerThread.Prepared extends java.lang.ObjectRepresents a PostgreSQL Prepared object.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.StringnameThe object name.(package private) int[]paramTypeThe list of parameter types (if set).(package private) CommandInterfaceprepThe prepared statement.(package private) ResultInterfaceresultThe current result (for suspended portal).(package private) java.lang.StringsqlThe SQL statement.
-
Constructor Summary
Constructors Constructor Description Prepared()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) voidclose()Closes prepared statement and result, if any.(package private) voidcloseResult()Closes the result, if any.
-
-
-
Field Detail
-
name
java.lang.String name
The object name.
-
sql
java.lang.String sql
The SQL statement.
-
prep
CommandInterface prep
The prepared statement.
-
result
ResultInterface result
The current result (for suspended portal).
-
paramType
int[] paramType
The list of parameter types (if set).
-
-