Uses of Class
org.h2.command.Prepared
Packages that use Prepared
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains DDL (data definition language) and related SQL statements.
Contains DML (data manipulation language) and related SQL statements.
Contains queries.
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.
Classes related to a table and table meta data.
-
Uses of Prepared in org.h2.command
Methods in org.h2.command that return PreparedModifier and TypeMethodDescriptionParse the statement and prepare it for execution.Constructors in org.h2.command with parameters of type PreparedModifierConstructorDescriptionCommandContainer(SessionLocal session, String sql, Prepared prepared) -
Uses of Prepared in org.h2.command.ddl
Subclasses of Prepared in org.h2.command.ddlModifier and TypeClassDescriptionclassThe base class for ALTER DOMAIN commands.classThis class represents the statement ALTER DOMAIN ADD CONSTRAINTclassThis class represents the statement ALTER DOMAIN DROP CONSTRAINTclassThis class represents the statements ALTER DOMAIN SET DEFAULT ALTER DOMAIN DROP DEFAULT ALTER DOMAIN SET ON UPDATE ALTER DOMAIN DROP ON UPDATEclassThis class represents the statement ALTER DOMAIN RENAMEclassThis class represents the statement ALTER DOMAIN RENAME CONSTRAINTclassThis class represents the statement ALTER INDEX RENAMEclassThis class represents the statement ALTER SCHEMA RENAMEclassThis class represents the statement ALTER SEQUENCE.classThe base class for ALTER TABLE commands.classThis class represents the statement ALTER TABLE ADD CONSTRAINTclassThis class represents the statements ALTER TABLE ADD, ALTER TABLE ADD IF NOT EXISTS, ALTER TABLE ALTER COLUMN, ALTER TABLE ALTER COLUMN SELECTIVITY, ALTER TABLE ALTER COLUMN SET DEFAULT, ALTER TABLE ALTER COLUMN DROP DEFAULT, ALTER TABLE ALTER COLUMN DROP EXPRESSION, ALTER TABLE ALTER COLUMN SET NULL, ALTER TABLE ALTER COLUMN DROP NULL, ALTER TABLE ALTER COLUMN SET VISIBLE, ALTER TABLE ALTER COLUMN SET INVISIBLE, ALTER TABLE DROP COLUMNclassThis class represents the statement ALTER TABLE DROP CONSTRAINTclassThis class represents the statement ALTER TABLE RENAMEclassThis class represents the statement ALTER TABLE ALTER COLUMN RENAMEclassThis class represents the statement ALTER TABLE RENAME CONSTRAINTclassThis class represents the statements ALTER USER ADMIN, ALTER USER RENAME, ALTER USER SET PASSWORDclassThis class represents the statement ALTER VIEWclassThis class represents the statements ANALYZE and ANALYZE TABLEclassclassThis class represents the statement CREATE AGGREGATEclassThis class represents the statement CREATE CONSTANTclassThis class represents the statement CREATE DOMAINclassThis class represents the statement CREATE ALIASclassThis class represents the statement CREATE INDEXclassThis class represents the statement CREATE LINKED TABLEclassThis class represents the statement CREATE ROLEclassThis class represents the statement CREATE SCHEMAclassThis class represents the statement CREATE SEQUENCE.classThis class represents the statement CREATE SYNONYMclassThis class represents the statement CREATE TABLEclassThis class represents the statement CREATE TRIGGERclassThis class represents the statement CREATE USERclassThis class represents the statement CREATE VIEWclassThis class represents the statement DEALLOCATEclassThis class represents a non-transaction statement, for example a CREATE or DROP.classThis class represents the statement DROP AGGREGATEclassThis class represents the statement DROP CONSTANTclassThis class represents the statement DROP ALL OBJECTSclassThis class represents the statement DROP DOMAINclassThis class represents the statement DROP ALIASclassThis class represents the statement DROP INDEXclassThis class represents the statement DROP ROLEclassThis class represents the statement DROP SCHEMAclassThis class represents the statement DROP SEQUENCEclassThis class represents the statement DROP SYNONYMclassThis class represents the statement DROP TABLEclassThis class represents the statement DROP TRIGGERclassThis class represents the statement DROP USERclassThis class represents the statement DROP VIEWclassThis class represents the statements GRANT RIGHT, GRANT ROLE, REVOKE RIGHT, REVOKE ROLEclassThis class represents the statement PREPAREclassThis class represents a non-transaction statement that involves a schema.classThis class represents the statement COMMENTclassThis class represents the statement TRUNCATE TABLEMethods in org.h2.command.ddl with parameters of type Prepared -
Uses of Prepared in org.h2.command.dml
Subclasses of Prepared in org.h2.command.dmlModifier and TypeClassDescriptionclassThis class represents the statement ALTER TABLE SETclassThis class represents the statement BACKUPclassThis class represents the statement CALL.classCommand that supports VALUES clause.classData change statement.final classThis class represents the statement DELETEclassThis class represents the statement EXECUTE IMMEDIATE.classThis class represents the statement EXECUTEclassThis class represents the statement EXPLAINclassThis class represents the statement CALL.final classThis class represents the statement INSERTfinal classThis class represents the statement MERGE or the MySQL compatibility statement REPLACEfinal classThis class represents the statement syntax MERGE INTO table alias USING...classRepresents an empty statement or a statement that has no effect.classThis class represents the statement RUNSCRIPTclassThis class represents the statement SCRIPTclassThis class represents the statement SETclassThis class represents the statement SET SESSION CHARACTERISTICSclassRepresents a transactional statement.final classThis class represents the statement UPDATEMethods in org.h2.command.dml that return PreparedMethods in org.h2.command.dml with parameters of type Prepared -
Uses of Prepared in org.h2.command.query
Subclasses of Prepared in org.h2.command.queryModifier and TypeClassDescriptionclassRepresents a SELECT statement (simple, or union).classThis class represents a simple SELECT statement.classRepresents a union SELECT statement.classTable value constructor. -
Uses of Prepared in org.h2.engine
Methods in org.h2.engine that return PreparedModifier and TypeMethodDescriptionProcedure.getPrepared()Parse and prepare the given SQL statement.Parse and prepare the given SQL statement.Methods in org.h2.engine with parameters of type PreparedModifier and TypeMethodDescriptionSessionLocal.getNextValueFor(Sequence sequence, Prepared prepared) Returns the next value of the sequence in this session.Constructors in org.h2.engine with parameters of type Prepared -
Uses of Prepared in org.h2.expression
Constructors in org.h2.expression with parameters of type PreparedModifierConstructorDescriptionSequenceValue(Sequence sequence, Prepared prepared) Creates new instance of NEXT VALUE FOR expression. -
Uses of Prepared in org.h2.table
Methods in org.h2.table with parameters of type PreparedModifier and TypeMethodDescriptionvoidTable.updateRows(Prepared prepared, SessionLocal session, LocalResult rows) Update a list of rows in this table.voidTableLink.updateRows(Prepared prepared, SessionLocal session, LocalResult rows)