Uses of Class
org.h2.command.Prepared
-
Packages that use Prepared Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.command.ddl Contains DDL (data definition language) and related SQL statements.org.h2.command.dml Contains DML (data manipulation language) and related SQL statements.org.h2.command.query Contains queries.org.h2.constraint Database constraints such as check constraints, unique constraints, and referential constraints.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.table Classes related to a table and table meta data. -
-
Uses of Prepared in org.h2.command
Fields in org.h2.command declared as Prepared Modifier and Type Field Description private PreparedParser. currentPreparedprivate PreparedCommandContainer. preparedFields in org.h2.command with type parameters of type Prepared Modifier and Type Field Description private java.util.ArrayList<Prepared>CommandList. commandsMethods in org.h2.command that return Prepared Modifier and Type Method Description private PreparedParser. commandIfTableExists(Schema schema, java.lang.String tableName, boolean ifTableExists, Prepared commandIfTableExists)private PreparedParser. getAlterTableAlterColumnDropDefaultExpression(Schema schema, java.lang.String tableName, boolean ifTableExists, Column column, int type)private PreparedParser. getCurrentPrepared()private PreparedParser. parse(java.lang.String sql, boolean withExpectedList)(package private) PreparedParser. parse(java.lang.String sql, java.util.ArrayList<Token> tokens)Parse the statement, but don't prepare it for execution.private PreparedParser. parseAlter()private PreparedParser. parseAlterSchema()private PreparedParser. parseAlterTable()private PreparedParser. parseAlterTableAlter(Schema schema, java.lang.String tableName, boolean ifTableExists)private PreparedParser. parseAlterTableAlterColumnIdentity(Schema schema, java.lang.String tableName, boolean ifTableExists, Column column)private PreparedParser. parseAlterTableAlterColumnSet(Schema schema, java.lang.String tableName, boolean ifTableExists, boolean ifExists, java.lang.String columnName, Column column)private PreparedParser. parseAlterTableCompatibility(Schema schema, java.lang.String tableName, boolean ifTableExists, Mode mode)private PreparedParser. parseAlterTableDrop(Schema schema, java.lang.String tableName, boolean ifTableExists)private PreparedParser. parseAlterTableDropCompatibility(Schema schema, java.lang.String tableName, boolean ifTableExists)private PreparedParser. parseAlterTableRename(Schema schema, java.lang.String tableName, boolean ifTableExists)private PreparedParser. parseAlterTableSet(Schema schema, java.lang.String tableName, boolean ifTableExists)private PreparedParser. parseAnalyze()private PreparedParser. parseBackup()private PreparedParser. parseComment()private PreparedParser. parseCreate()private PreparedParser. parseDrop()private PreparedParser. parseExecutePostgre()private PreparedParser. parseExecuteSQLServer()private PreparedParser. parseHelp()private PreparedParser. parseMerge(int start)private PreparedParser. parseMergeInto(TableFilter targetTableFilter, int start)private PreparedParser. parsePrepare()private PreparedParser. parsePrepared()private PreparedParser. parsePrepareProcedure()private PreparedParser. parseReleaseSavepoint()private PreparedParser. parseSet()private PreparedParser. parseSetTransactionMode()private PreparedParser. parseShow()private PreparedParser. parseTruncate()private PreparedParser. parseUse()private PreparedParser. parseWith()private PreparedParser. parseWith1(java.util.List<TableView> viewsCreated)private PreparedParser. parseWithQuery()private PreparedParser. parseWithStatementOrQuery(int start)PreparedParser. prepare(java.lang.String sql)Parse the statement and prepare it for execution.private static PreparedParser. prepare(SessionLocal s, java.lang.String sql, java.util.ArrayList<Value> paramValues)private PreparedParser. readSetCompatibility(Mode.ModeEnum modeEnum)Methods in org.h2.command with parameters of type Prepared Modifier and Type Method Description (package private) static voidCommandContainer. clearCTE(SessionLocal session, Prepared prepared)Clears CTE views for a specified statement.private PreparedParser. commandIfTableExists(Schema schema, java.lang.String tableName, boolean ifTableExists, Prepared commandIfTableExists)private CommandListParser. prepareCommandList(CommandContainer command, Prepared p, java.lang.String sql, java.lang.String remainingSql, java.util.ArrayList<Token> remainingTokens)private voidParser. setSQL(Prepared command, int start)Constructors in org.h2.command with parameters of type Prepared Constructor Description CommandContainer(SessionLocal session, java.lang.String sql, Prepared prepared)Constructor parameters in org.h2.command with type arguments of type Prepared Constructor Description CommandList(SessionLocal session, java.lang.String sql, CommandContainer command, java.util.ArrayList<Prepared> commands, java.util.ArrayList<Parameter> parameters, java.lang.String remaining) -
Uses of Prepared in org.h2.command.ddl
Subclasses of Prepared in org.h2.command.ddl Modifier and Type Class Description classAlterDomainThe base class for ALTER DOMAIN commands.classAlterDomainAddConstraintThis class represents the statement ALTER DOMAIN ADD CONSTRAINTclassAlterDomainDropConstraintThis class represents the statement ALTER DOMAIN DROP CONSTRAINTclassAlterDomainExpressionsThis class represents the statements ALTER DOMAIN SET DEFAULT ALTER DOMAIN DROP DEFAULT ALTER DOMAIN SET ON UPDATE ALTER DOMAIN DROP ON UPDATEclassAlterDomainRenameThis class represents the statement ALTER DOMAIN RENAMEclassAlterDomainRenameConstraintThis class represents the statement ALTER DOMAIN RENAME CONSTRAINTclassAlterIndexRenameThis class represents the statement ALTER INDEX RENAMEclassAlterSchemaRenameThis class represents the statement ALTER SCHEMA RENAMEclassAlterSequenceThis class represents the statement ALTER SEQUENCE.classAlterTableThe base class for ALTER TABLE commands.classAlterTableAddConstraintThis class represents the statement ALTER TABLE ADD CONSTRAINTclassAlterTableAlterColumnThis 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 COLUMNclassAlterTableDropConstraintThis class represents the statement ALTER TABLE DROP CONSTRAINTclassAlterTableRenameThis class represents the statement ALTER TABLE RENAMEclassAlterTableRenameColumnThis class represents the statement ALTER TABLE ALTER COLUMN RENAMEclassAlterTableRenameConstraintThis class represents the statement ALTER TABLE RENAME CONSTRAINTclassAlterUserThis class represents the statements ALTER USER ADMIN, ALTER USER RENAME, ALTER USER SET PASSWORDclassAlterViewThis class represents the statement ALTER VIEWclassAnalyzeThis class represents the statements ANALYZE and ANALYZE TABLEclassCommandWithColumnsclassCreateAggregateThis class represents the statement CREATE AGGREGATEclassCreateConstantThis class represents the statement CREATE CONSTANTclassCreateDomainThis class represents the statement CREATE DOMAINclassCreateFunctionAliasThis class represents the statement CREATE ALIASclassCreateIndexThis class represents the statement CREATE INDEXclassCreateLinkedTableThis class represents the statement CREATE LINKED TABLEclassCreateRoleThis class represents the statement CREATE ROLEclassCreateSchemaThis class represents the statement CREATE SCHEMAclassCreateSequenceThis class represents the statement CREATE SEQUENCE.classCreateSynonymThis class represents the statement CREATE SYNONYMclassCreateTableThis class represents the statement CREATE TABLEclassCreateTriggerThis class represents the statement CREATE TRIGGERclassCreateUserThis class represents the statement CREATE USERclassCreateViewThis class represents the statement CREATE VIEWclassDeallocateProcedureThis class represents the statement DEALLOCATEclassDefineCommandThis class represents a non-transaction statement, for example a CREATE or DROP.classDropAggregateThis class represents the statement DROP AGGREGATEclassDropConstantThis class represents the statement DROP CONSTANTclassDropDatabaseThis class represents the statement DROP ALL OBJECTSclassDropDomainThis class represents the statement DROP DOMAINclassDropFunctionAliasThis class represents the statement DROP ALIASclassDropIndexThis class represents the statement DROP INDEXclassDropRoleThis class represents the statement DROP ROLEclassDropSchemaThis class represents the statement DROP SCHEMAclassDropSequenceThis class represents the statement DROP SEQUENCEclassDropSynonymThis class represents the statement DROP SYNONYMclassDropTableThis class represents the statement DROP TABLEclassDropTriggerThis class represents the statement DROP TRIGGERclassDropUserThis class represents the statement DROP USERclassDropViewThis class represents the statement DROP VIEWclassGrantRevokeThis class represents the statements GRANT RIGHT, GRANT ROLE, REVOKE RIGHT, REVOKE ROLEclassPrepareProcedureThis class represents the statement PREPAREclassSchemaCommandThis class represents a non-transaction statement that involves a schema.(package private) classSchemaOwnerCommandThis class represents a non-transaction statement that involves a schema and requires schema owner rights.classSetCommentThis class represents the statement COMMENTclassTruncateTableThis class represents the statement TRUNCATE TABLEFields in org.h2.command.ddl declared as Prepared Modifier and Type Field Description private PreparedPrepareProcedure. preparedMethods in org.h2.command.ddl with parameters of type Prepared Modifier and Type Method Description voidPrepareProcedure. setPrepared(Prepared prep) -
Uses of Prepared in org.h2.command.dml
Subclasses of Prepared in org.h2.command.dml Modifier and Type Class Description classAlterTableSetThis class represents the statement ALTER TABLE SETclassBackupCommandThis class represents the statement BACKUPclassCallThis class represents the statement CALL.classCommandWithValuesCommand that supports VALUES clause.classDataChangeStatementData change statement.classDeleteThis class represents the statement DELETEclassExecuteImmediateThis class represents the statement EXECUTE IMMEDIATE.classExecuteProcedureThis class represents the statement EXECUTEclassExplainThis class represents the statement EXPLAIN(package private) classFilteredDataChangeStatementData change statement with WHERE criteria and possibly limited number of rows.classHelpThis class represents the statement CALL.classInsertThis class represents the statement INSERTclassMergeThis class represents the statement MERGE or the MySQL compatibility statement REPLACEclassMergeUsingThis class represents the statement syntax MERGE INTO table alias USING...classNoOperationRepresents an empty statement or a statement that has no effect.classRunScriptCommandThis class represents the statement RUNSCRIPT(package private) classScriptBaseThis class is the base for RunScriptCommand and ScriptCommand.classScriptCommandThis class represents the statement SCRIPTclassSetThis class represents the statement SETclassSetSessionCharacteristicsThis class represents the statement SET SESSION CHARACTERISTICSclassTransactionCommandRepresents a transactional statement.classUpdateThis class represents the statement UPDATEFields in org.h2.command.dml declared as Prepared Modifier and Type Field Description private PreparedExplain. commandMethods in org.h2.command.dml that return Prepared Modifier and Type Method Description PreparedExplain. getCommand()Methods in org.h2.command.dml with parameters of type Prepared Modifier and Type Method Description (package private) static voidUpdate. doUpdate(Prepared prepared, SessionLocal session, Table table, LocalResult rows)voidExplain. setCommand(Prepared command) -
Uses of Prepared in org.h2.command.query
Subclasses of Prepared in org.h2.command.query Modifier and Type Class Description classQueryRepresents a SELECT statement (simple, or union).classSelectThis class represents a simple SELECT statement.classSelectUnionRepresents a union SELECT statement.classTableValueConstructorTable value constructor. -
Uses of Prepared in org.h2.constraint
Methods in org.h2.constraint that return Prepared Modifier and Type Method Description private PreparedConstraintReferential. getDelete(SessionLocal session)private PreparedConstraintReferential. getUpdate(SessionLocal session)private PreparedConstraintReferential. prepare(SessionLocal session, java.lang.String sql, ConstraintActionType action)Methods in org.h2.constraint with parameters of type Prepared Modifier and Type Method Description private voidConstraintReferential. setWhere(Prepared command, int pos, Row row)private voidConstraintReferential. updateWithSkipCheck(Prepared prep) -
Uses of Prepared in org.h2.engine
Fields in org.h2.engine declared as Prepared Modifier and Type Field Description private PreparedProcedure. preparedprivate PreparedSessionLocal.SequenceAndPrepared. preparedFields in org.h2.engine with type parameters of type Prepared Modifier and Type Field Description (package private) static java.util.Comparator<Prepared>MetaRecord. CONSTRAINTS_COMPARATORComparator for prepared constraints, sorts unique and primary key constraints first.Methods in org.h2.engine that return Prepared Modifier and Type Method Description PreparedProcedure. getPrepared()(package private) PreparedMetaRecord. prepare(Database db, SessionLocal systemSession, DatabaseEventListener listener)Prepares the meta data statement.PreparedSessionLocal. prepare(java.lang.String sql)Parse and prepare the given SQL statement.PreparedSessionLocal. prepare(java.lang.String sql, boolean rightsChecked, boolean literalsChecked)Parse and prepare the given SQL statement.Methods in org.h2.engine with parameters of type Prepared Modifier and Type Method Description (package private) static voidMetaRecord. execute(Database db, Prepared command, DatabaseEventListener listener, java.lang.String sql)Execute the meta data statement.ValueSessionLocal. 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 Constructor Description Procedure(java.lang.String name, Prepared prepared)SequenceAndPrepared(Sequence sequence, Prepared prepared) -
Uses of Prepared in org.h2.expression
Fields in org.h2.expression declared as Prepared Modifier and Type Field Description private PreparedRownum. preparedprivate PreparedSequenceValue. preparedConstructors in org.h2.expression with parameters of type Prepared Constructor Description Rownum(Prepared prepared)SequenceValue(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 Prepared Modifier and Type Method Description voidTable. updateRows(Prepared prepared, SessionLocal session, LocalResult rows)Update a list of rows in this table.voidTableLink. updateRows(Prepared prepared, SessionLocal session, LocalResult rows)
-