Skip to content

SQLEP 1.3.1 Tutorial

Vladimír Hudec edited this page Jun 10, 2013 · 5 revisions

###The tutorial is updated for SQLP 2 and SQLEP 1.3.1

###Introduction The new features of the SQL Processor Eclipse Plugin (SQLEP) version 1.3.1 are

  • extended index generation

###Indexes Alongside the control directive for compound indexes described in SQLEP 1.2.x Changes Tutorial there are two more control directives

database-skip-indexes;

In this case in the generated POJOs and META SQL statements (based on DB) there are no indexes related artifacts.

database-index-types num1,num2,...;

In this case in the generated POJOs and META SQL statements (based on DB) there are indexes related artifacts of types num1,num2,.... For more information please see http://docs.oracle.com/javase/6/docs/api/java/sql/DatabaseMetaData.html#getIndexInfo%28java.lang.String,%20java.lang.String,%20java.lang.String,%20boolean,%20boolean%29. The standard processed types are 1 and 3.

Clone this wiki locally