Uses of Class
org.sqlproc.engine.impl.SqlMetaStatement
-
Packages that use SqlMetaStatement Package Description org.sqlproc.engine The public part of the SQL Processor implementation.org.sqlproc.engine.impl The private part of the SQL Processor implementation. -
-
Uses of SqlMetaStatement in org.sqlproc.engine
Fields in org.sqlproc.engine declared as SqlMetaStatement Modifier and Type Field Description protected SqlMetaStatement
SqlEngine. statement
The pre-compiled META SQL query or statement.Fields in org.sqlproc.engine with type parameters of type SqlMetaStatement Modifier and Type Field Description private 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 SqlMetaStatement Modifier and Type Method Description private 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 SqlMetaStatement Modifier and Type Method Description private 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 SqlMetaStatement Constructor Description SqlCrudEngine(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 SqlMetaStatement Modifier and Type Field Description (package private) Map<String,Map<String,SqlMetaStatement>>
SqlProcessor. metaStatements
The collection of the META SQL statements.Methods in org.sqlproc.engine.impl that return SqlMetaStatement Modifier and Type Method Description static SqlMetaStatement
SqlMetaStatement. getInstance(String name, String statement, SqlTypeFactory typeFactory)
Simple factory method (design pattern).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 SqlMetaStatement Modifier and Type Method Description Map<String,SqlMetaStatement>
SqlProcessor. getMetaStatements(String type)
Returns the collection of the META SQL statements.Map<String,SqlMetaStatement>
SqlProcessor. getMetaStatements(SqlProcessor.StatementType type)
Returns the collection of the META SQL statements.Methods in org.sqlproc.engine.impl with parameters of type SqlMetaStatement Modifier and Type Method Description (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.void
SqlProcessorParser. metaSql(SqlMetaStatement metaStatement)
void
SqlProcessorParser. sql(SqlMetaStatement metaStatement)
void
SqlProcessorParser. sqlFragment(SqlMetaStatement metaStatement)
-