Uses of Class
org.sqlproc.engine.SqlEngine
Packages that use SqlEngine
Package
Description
The public part of the SQL Processor implementation.
The private part of the SQL Processor implementation.
-
Uses of SqlEngine in org.sqlproc.engine
Subclasses of SqlEngine in org.sqlproc.engineModifier and TypeClassDescriptionclassThe primary SQL Processor class for the META SQL CRUD statement execution.classThe primary SQL Processor class for the META SQL stored procedures execution.classThe primary SQL Processor class for the META SQL query execution.Fields in org.sqlproc.engine with type parameters of type SqlEngineModifier and TypeFieldDescription(package private) ConcurrentHashMap<String, SqlEngine> SqlProcessorLoader.Engine.calls(package private) ConcurrentHashMap<String, SqlEngine> SqlProcessorLoader.Engine.cruds(package private) ConcurrentHashMap<String, SqlEngine> SqlProcessorLoader.Engine.sqlsMethods in org.sqlproc.engine that return SqlEngineModifier and TypeMethodDescriptionprivate SqlEngineSqlProcessorLoader.createEngine(String name, SqlProcessorLoader.EngineType engineType, SqlMetaStatement stmt, String sqlStatement) Creates a new instance of the SQL Engine instance (the primary SQL Processor class).SqlProcessorLoader.getDynamicEngine(String name, SqlProcessorLoader.EngineType engineType, String sqlStatement) Returns the named dynamic SQL Engine instance (the primary SQL Processor class).SqlProcessorLoader.getEngine(String name, SqlProcessorLoader.EngineType engineType) Returns the named static or dynamic SQL Engine instance (the primary SQL Processor class).SqlProcessorLoader.getStaticEngine(String name, SqlProcessorLoader.EngineType engineType) Returns the named static SQL Engine instance (the primary SQL Processor class).Methods in org.sqlproc.engine that return types with arguments of type SqlEngineModifier and TypeMethodDescription(package private) ConcurrentHashMap<String, SqlEngine> SqlProcessorLoader.Engine.get(SqlProcessorLoader.EngineType type) SqlDefaultFactory.getCrudDynamicEngines()Returns the collection of names of all initialized/constructed dynamic SQL CRUD Engine instances.SqlEngineFactory.getCrudDynamicEngines()Returns the collection of names of all initialized/constructed dynamic SQL CRUD Engine instances.SqlDefaultFactory.getCrudEngines()Returns the collection of named dynamic SQL CRUD Engines (the primary SQL Processor class) instances.SqlEngineFactory.getCrudEngines()Returns the collection of named dynamic SQL CRUD Engines (the primary SQL Processor class) instances.SqlProcessorLoader.getDynamicEngines(SqlProcessorLoader.EngineType engineType) Returns all dynamic engines of the required typeSqlProcessorLoader.getEngines(SqlProcessorLoader.EngineType engineType) Returns all static engines of the required typeSqlDefaultFactory.getProcedureDynamicEngines()Returns the collection of names of all initialized/constructed dynamic SQL Procedure Engine instances.SqlEngineFactory.getProcedureDynamicEngines()Returns the collection of names of all initialized/constructed dynamic SQL Procedure Engine instances.SqlDefaultFactory.getProcedureEngines()Returns the collection of named dynamic SQL Procedure Engines (the primary SQL Processor class) instances.SqlEngineFactory.getProcedureEngines()Returns the collection of named dynamic SQL Procedure Engines (the primary SQL Processor class) instances.SqlDefaultFactory.getQueryDynamicEngines()Returns the collection of names of all initialized/constructed dynamic SQL Query Engine instances.SqlEngineFactory.getQueryDynamicEngines()Returns the collection of names of all initialized/constructed dynamic SQL Query Engine instances.SqlDefaultFactory.getQueryEngines()Returns the collection of named dynamic SQL Query Engines (the primary SQL Processor class) instances.SqlEngineFactory.getQueryEngines()Returns the collection of named dynamic SQL Query Engines (the primary SQL Processor class) instances.Methods in org.sqlproc.engine with parameters of type SqlEngineModifier and TypeMethodDescriptionprivate voidCheck the SQL Engine instance is not nullprivate voidSqlProcessorLoader.loadStatementFeatures(String name, SqlEngine sqlEngine) Some filters can be the optional features in the statement context. -
Uses of SqlEngine in org.sqlproc.engine.impl
Fields in org.sqlproc.engine.impl declared as SqlEngineModifier and TypeFieldDescriptionprivate SqlEngineSqlProcessContext.sqlEngineThe primary SQL Processor class for the META SQL execution.Methods in org.sqlproc.engine.impl with parameters of type SqlEngineModifier and TypeMethodDescriptionSqlMetaStatement.process(SqlMetaStatement.Type sqlStatementType, Object dynamicInputValues, SqlControl sqlControl, SqlEngine sqlEngine) The main contract for a dynamic ANSI SQL Query generation.Constructors in org.sqlproc.engine.impl with parameters of type SqlEngineModifierConstructorDescription(package private)SqlProcessContext(SqlMetaStatement.Type sqlStatementType, Object dynamicInputValues, SqlControl sqlControl, SqlEngine sqlEngine) Creates a new instance.