-
Notifications
You must be signed in to change notification settings - Fork 16
Home
The SQL Processor (SQLP) is an engine producing the ANSI SQL statements and providing their execution without the necessity to write Java plumbing code related to the ORM or JDBC API. The input to the SQL Processor is
- a search form (or a question form or the input values), which is just a POJO. Typically this form is seeded by an end user in a presentation layer of a web application.
- a META SQL query or statement, which is an enhanced ANSI SQL statement. This enhancement is defined in ANTLR based grammar. All the META SQL statements are defined in the meta statements file.
- an output mapping rule, which is a mapping prescription from an SQL query result to the Java output classes values. This prescription syntax is again defined in ANTLR based grammar. All the mapping rules are also defined in the meta statements file.
Based on the inputs the final SQL query/statement is generated. The parameters are bounded and finally this query/statement is executed. This process is known as a Data Driven Query. The binding of the input values is done using the Reflection API, without any Java plumbing code. The output of the SQL Processor is
- a list of result class instances (or data transfer objects or the output values). Each result class instance is created using the Reflection API, again without any Java plumbing code.
The SQL Processor Eclipse Plugin (SQLEP) enables smart edition of the SQL Processor (SQLP) artifacts, POJO and DAO modelling and SQLP artifacts generation based on DB model (including all META SQL statements, POJO and DAO Java code).
The SQLEP has been split into 2 specialized plugins
- SQLMOP - SQL Processor Model Plugin, devoted to POJO, DAO and APP
- SQLMEP - SQL Processor META Plugin, devoted to META SQL
This site is primarily dedicated to the SQLP. The SQLEP can found at https://github.com/hudec/sql-processor-eclipse/wiki.
The SQL Processor is available from the next Maven repos:
- https://oss.sonatype.org/content/groups/public/org/sqlproc/
- https://repo1.maven.org/maven2/org/sqlproc/
The SQL Processor Javadoc is available at
- http://sql-processor.eu/javadoc/3.5.0/core/index.html
- http://sql-processor.eu/javadoc/3.5.0/hibernate/index.html
- http://sql-processor.eu/javadoc/3.5.0/spring/index.html
- http://sql-processor.eu/javadoc/3.5.0/beans/index.html
- The primary SQL Processor site can be found at http://sql-processor.eu/
- All the Tutorials and the Reference Guide can be found at Tutorials
- SQL Processor Home
- SQL Processor News
- SQL Processor Eclipse Plugin Home
- SQL Processor Eclipse Plugin News
- SQL Processor Architecture
- SQLP and SQLM*P Tutorials
- SQLM*P Control directives
- Basic Tutorials
- 10 minutes Tutorial
- Simple Tutorial
- CRUD Tutorial
- Associations Tutorial
- Inheritance Tutorial
- More inheritance Tutorial
- Custom Types Tutorial
- Stored procedures Tutorial
- IDE Setup and Coding Standards
- Catalog (JPA) Sample
- Catalog (Hibernate) Sample
- Catalog (Spring) Sample
- Advanced catalog (Spring) Sample
- The Reference Guide
- The Eclipse Plugin Tutorials
- The Improvements
- Tutorials archive