Uses of Class
org.sqlproc.engine.impl.SqlMetaStatement
Packages that use SqlMetaStatement
Package
Description
The public part of the SQL Processor implementation.
The private part of the SQL Processor implementation.
-
Uses of SqlMetaStatement in org.sqlproc.engine
Fields in org.sqlproc.engine declared as SqlMetaStatementModifier and TypeFieldDescriptionprotected SqlMetaStatement
SqlEngine.statement
The pre-compiled META SQL query or statement.Fields in org.sqlproc.engine with type parameters of type SqlMetaStatementModifier and TypeFieldDescriptionprivate Map
<String, SqlMetaStatement> SqlProcessorLoader.calls
The collection of named META SQL CALLABLE statements.private Map
<String, SqlMetaStatement> SqlProcessorLoader.cruds
The collection of named META SQL CRUD statements.private Map
<String, SqlMetaStatement> SqlProcessorLoader.sqls
The collection of named META SQL queries.Methods in org.sqlproc.engine that return types with arguments of type SqlMetaStatementModifier and TypeMethodDescriptionprivate Map
<String, SqlMetaStatement> SqlProcessorLoader.getStatements
(SqlProcessorLoader.EngineType engineType) Returns the static statements container based on required SQL Engine typeMethods in org.sqlproc.engine with parameters of type SqlMetaStatementModifier and TypeMethodDescriptionprivate SqlEngine
SqlProcessorLoader.createEngine
(String name, SqlProcessorLoader.EngineType engineType, SqlMetaStatement stmt, String sqlStatement) Creates a new instance of the SQL Engine instance (the primary SQL Processor class).Constructors in org.sqlproc.engine with parameters of type SqlMetaStatementModifierConstructorDescriptionSqlCrudEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory) Creates a new instance of the SqlCrudEngine from one META SQL statement instance.SqlCrudEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory, SqlEngineConfiguration configuration) Creates a new instance of the SqlCrudEngine from one META SQL statement instance.SqlCrudEngine
(String name, SqlMetaStatement statement, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory) Creates a new instance of the SqlCrudEngine from one META SQL statement instance.SqlCrudEngine
(String name, SqlMetaStatement statement, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory) Creates a new instance of the SqlCrudEngine from one META SQL statement instance.SqlEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory, SqlEngineConfiguration configuration) Creates a new instance of the SqlEngine from one META SQL statement and one SQL Mapping rule instance.SqlProcedureEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory) Creates a new instance of the SqlProcedureEngine from one stored procedure execution META SQL statement and one SQL mapping rule instances.SqlProcedureEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory, SqlEngineConfiguration configuration) Creates a new instance of the SqlProcedureEngine from one stored procedure execution META SQL statement and one SQL mapping rule instances.SqlProcedureEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory) Creates a new instance of the SqlProcedureEngine from one stored procedure execution META SQL statement and one SQL mapping rule instances.SqlQueryEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory) Creates a new instance of the SqlQueryEngine from one META SQL statement and one SQL mapping rule instances.SqlQueryEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlMonitor monitor, Map<String, Object> features, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory, SqlEngineConfiguration configuration) Creates a new instance of the SqlQueryEngine from one META SQL statement and one SQL mapping rule instances.SqlQueryEngine
(String name, SqlMetaStatement statement, SqlMappingRule mapping, SqlTypeFactory typeFactory, SqlPluginFactory pluginFactory) Creates a new instance of the SqlQueryEngine from one META SQL statement and one SQL mapping rule instances. -
Uses of SqlMetaStatement in org.sqlproc.engine.impl
Fields in org.sqlproc.engine.impl with type parameters of type SqlMetaStatementModifier and TypeFieldDescription(package private) Map
<String, Map<String, SqlMetaStatement>> SqlProcessor.metaStatements
The collection of the META SQL statements.Methods in org.sqlproc.engine.impl that return SqlMetaStatementModifier and TypeMethodDescriptionstatic SqlMetaStatement
SqlMetaStatement.getInstance
(String name, String statement, SqlTypeFactory typeFactory) Simple factory method (design pattern).final SqlMetaStatement
SqlProcessorParser.meta
(String name, SqlTypeFactory _typeFactory, boolean _skip) (package private) SqlMetaStatement
SqlProcessorLazyParser.newSqlMetaStatement()
(package private) SqlMetaStatement
SqlProcessorParser.newSqlMetaStatement()
Methods in org.sqlproc.engine.impl that return types with arguments of type SqlMetaStatementModifier and TypeMethodDescriptionSqlProcessor.getMetaStatements
(String type) Returns the collection of the META SQL statements.SqlProcessor.getMetaStatements
(SqlProcessor.StatementType type) Returns the collection of the META SQL statements.Methods in org.sqlproc.engine.impl with parameters of type SqlMetaStatementModifier and TypeMethodDescription(package private) boolean
SqlProcessorParser.add
(SqlProcessor processor, String type, String name, SqlMetaStatement statement, List<String> activeFilters, String... filters) (package private) boolean
SqlProcessor.addMetaStatement
(String type, String name, String raw, SqlMetaStatement statement, List<ErrorMsg> errors, List<String> activeFilters, String... filters) Adds a new META SQL statement.final void
SqlProcessorParser.metaSql
(SqlMetaStatement metaStatement) final void
SqlProcessorParser.sql
(SqlMetaStatement metaStatement) final void
SqlProcessorParser.sqlFragment
(SqlMetaStatement metaStatement)