**%VERSION%** ([zip](http://code.google.com/p/iciql/downloads/detail?name=%ZIP%)|[jar](http://code.google.com/p/iciql/downloads/detail?name=%JAR%)) *released %BUILDDATE%*\r
\r
- api change release (API v4)\r
+- @IQTable.createIfRequired -> @IQTable.create\r
- don't INSERT primitive autoIncrement primaryKey fields, let database assign value\r
- full support for primitives in all clauses\r
- DECIMAL(length, scale) support\r
* Whether or not iciql tries to create the table and indexes. Default:\r
* true.\r
*/\r
- boolean createIfRequired() default true;\r
+ boolean create() default true;\r
\r
/**\r
* Whether only supported types are mapped. If true, unsupported mapped\r
}\r
\r
// allow control over createTableIfRequired()\r
- createTableIfRequired = tableAnnotation.createIfRequired();\r
+ createTableIfRequired = tableAnnotation.create();\r
\r
// model version\r
if (clazz.isAnnotationPresent(IQVersion.class)) {\r
* A table containing product data.
*/
-@IQTable(createIfRequired = false)
+@IQTable(create = false)
public class ProductNoCreateTable {
@SuppressWarnings("unused")