Commit Graph

341 Commits

Author SHA1 Message Date
Lukas Eder
54633e826d [#1218] Add code generation options to generate <customTypes/> referencing a Java type and a Converter - First implementation draft 2012-03-04 19:07:19 +00:00
Lukas Eder
a47284df8d [#650] Add a data type registry "org.jooq.impl.DataTypes" for cleaner DataType referencing
[#1217] Add EnumConverter as a base type for custom enum converters
2012-03-04 15:55:00 +00:00
Lukas Eder
880786ff07 [#1215] Add org.jooq.Converter<T, U> for custom type mapping
[#1216] Overload Record, Result.getValue() and .setValue() methods to accept a Converter
2012-03-04 15:00:17 +00:00
Lukas Eder
a414d3467f [#1180] Execute BatchMultiple (multi-query batch query), when executing BindSimple (single-query, multi-bind value query) with StatementType == STATIC_STATEMENT
[#1207] Add Factory.batch(Collection<? extends Query>) for convenience
2012-03-03 15:43:58 +00:00
Lukas Eder
86402653ed [#1202] Add support for the relational division operation: A.divideBy(B).on(A.ID.equal(B.A_ID)).returning(A.X, A.Y, ...) 2012-03-03 13:44:12 +00:00
Lukas Eder
e914d2d037 Documented descending ordering by index 2012-03-03 13:17:29 +00:00
Lukas Eder
eb7f140ece [#161] Add runtime configuration to pretty print rendered SQL - fixed indentation of subselects 2012-03-03 12:49:36 +00:00
Lukas Eder
64fd48639c [#1150] Add code generation option to disable generation of records 2012-03-02 17:22:53 +00:00
Lukas Eder
df9f495226 [#161] Add runtime configuration to pretty print rendered SQL - minor fix 2012-03-02 14:58:50 +00:00
Lukas Eder
d26df720d0 [#625] Remove dependency from generated Routines to the generator's SQLDialect 2012-03-02 14:47:23 +00:00
Lukas Eder
5f00b0eb26 [#161] Add runtime configuration to pretty print rendered SQL 2012-03-02 13:53:57 +00:00
Lukas Eder
16f1a8555e [#1188] Load default Settings from the classpath at /jooq-settings.xml, or from -Dorg.jooq.settings 2012-03-01 20:38:27 +00:00
Lukas Eder
fd2cee4561 [#521] Add runtime configuration for SQL reference style (upper case, lower case, as-is, quoted) - Fixed potential regression with NPE's when using CustomTables 2012-03-01 20:15:22 +00:00
Lukas Eder
399e5769e3 [#1200] Internal API leak exposed through covariance in AbstractType.getFields() 2012-03-01 16:56:10 +00:00
Lukas Eder
6b7457536a [#1199] Table.getFields() returns an internal representation of a table's field list. Make generated tables immutable instead! - fix didn't work 2012-03-01 16:55:03 +00:00
Lukas Eder
700d88bb08 [#1199] Table.getFields() returns an internal representation of a table's field list. Make generated tables immutable instead! 2012-03-01 16:32:48 +00:00
Lukas Eder
d511a29230 [#1200] Internal API leak exposed through covariance in AbstractType.getFields() 2012-03-01 16:22:03 +00:00
Lukas Eder
8a8713d171 [#491] Add runtime configuration for SQL keyword style (upper case, lower case) 2012-02-29 19:50:44 +00:00
Lukas Eder
b55236f0ba [#521] Add runtime configuration for SQL reference style (upper case, lower case, as-is, quoted) 2012-02-29 18:03:13 +00:00
Lukas Eder
19c706b0d6 [#521] Add runtime configuration for general quoting of SQL 2012-02-28 17:53:03 +00:00
Lukas Eder
ba07044227 Release 2.0.6-SNAPSHOT 2012-02-28 17:15:31 +00:00
Lukas Eder
428108b426 Updated copyright date from 2009-2011 to 2009-2012 2012-02-27 18:40:53 +00:00
Lukas Eder
1e499b540d Release 2.0.5 - Fixed Javadoc 2012-02-26 20:30:12 +00:00
Lukas Eder
3cb4363c5f [#1157] Add SQL / JDBC tracing capabilities in addition to logging - fixed broken ResultQuery.fetchMany() 2012-02-26 18:18:02 +00:00
Lukas Eder
35b85c26e1 [#978] Schema.getTables() and similar methods return empty lists when Schema is mapped with SchemaMapping
[#1175] Factory.use() seems to render SQL with the Schema name still present
2012-02-26 18:02:45 +00:00
Lukas Eder
3b93e6fa7e [#978] Schema.getTables() and similar methods return empty lists when Schema is mapped with SchemaMapping
[#1175] Factory.use() seems to render SQL with the Schema name still present
2012-02-26 17:32:25 +00:00
Lukas Eder
c075d2b31b [#1175] Factory.use() seems to render SQL with the Schema name still present 2012-02-26 14:39:57 +00:00
Lukas Eder
5709eb5add [#1107] Let Field.contains() support the Postgres ARRAY @> ARRAY operator 2012-02-26 12:36:04 +00:00
Lukas Eder
2da4878ff5 [#1184] Add DataType.isArray() 2012-02-26 11:59:00 +00:00
Lukas Eder
6ab797d87b [#1177] Add SQL Console module to jOOQ - Added some basic SQL parsing to ExecuteType.type() 2012-02-26 11:49:46 +00:00
Lukas Eder
d0ff2dba83 [#1177] Add SQL Console module to jOOQ - Fixeed ordering of ExecuteType literals for sorting in SQL Console UI 2012-02-26 10:24:56 +00:00
Lukas Eder
d1a99bc3f8 Some Javadoc clarification 2012-02-24 17:24:31 +00:00
Lukas Eder
d5d7991976 [#1179] Oracle-generated ArrayRecords need a reference to org.jooq.Schema to read TABLE of OBJECT from stored procedures 2012-02-24 17:11:44 +00:00
Lukas Eder
ed085ff5be [#1157] Add SQL / JDBC tracing capabilities in addition to logging - Added integration tests for using ExecuteListener with BatchMultiple 2012-02-24 14:25:55 +00:00
Lukas Eder
fff0d5e529 [#1157] Add SQL / JDBC tracing capabilities in addition to logging - Added integration tests for using ExecuteListener with BatchSingle 2012-02-24 14:06:27 +00:00
Lukas Eder
80c1037759 [#1157] Add SQL / JDBC tracing capabilities in addition to logging - Added integration tests for using ExecuteListener with ResultQuery 2012-02-24 13:40:41 +00:00
Lukas Eder
f736280b86 [#1157] Add SQL / JDBC tracing capabilities in addition to logging - Fixed batchSQL contents 2012-02-24 07:35:39 +00:00
Lukas Eder
4525266c9f [#1157] Add SQL / JDBC tracing capabilities in addition to logging - Fixed batchSQL contents 2012-02-24 07:30:32 +00:00
Lukas Eder
6b465ae15d Restored original license on CSVReader, removing potentially inappropriate claims 2012-02-24 07:05:24 +00:00
Lukas Eder
3921e0f0ca [#1157] Add SQL / JDBC tracing capabilities in addition to logging - Added support for batch queries 2012-02-23 21:01:50 +00:00
Lukas Eder
e09cda2a2f [#1157] Add extended SQL / JDBC tracing capabilities in addition to logging - added ExecuteType for convenience 2012-02-22 21:11:35 +00:00
Lukas Eder
dc0e2943de [#1157] Add extended SQL / JDBC tracing capabilities in addition to logging - added Javadoc 2012-02-22 20:38:54 +00:00
Lukas Eder
61c893a0ea [#1157] Add extended SQL / JDBC tracing capabilities in addition to logging - added DefaultExecuteListener 2012-02-22 07:13:12 +00:00
Lukas Eder
753b645389 [#1157] Add extended SQL / JDBC tracing capabilities in addition to logging - draft API and implementation 2012-02-21 21:17:43 +00:00
Lukas Eder
332f556d01 [#1169] Add Configuration.setData(), getData() to convey custom data in a configuration's lifecycle 2012-02-19 16:44:31 +00:00
Lukas Eder
fe50fb7546 [#1167] Trivial issue with org.jooq.Factory.exists Javadoc - GitHub issue #10 2012-02-18 20:43:14 +00:00
Lukas Eder
3c08fc6a6a [#408] Add class prefixes, suffixes and other options to the code generator (example strategy implementation still missing) 2012-02-18 18:56:46 +00:00
Lukas Eder
8acde3b97a [#93] Add Field.equalIgnoreCase(), Field.notEqualIgnoreCase() 2012-02-18 12:52:59 +00:00
Lukas Eder
7a4fb0a9ac - Fixed broken BatchSingle test for execution using StatementType.STATIC_STATEMENT
- Added SettingsTools for convenient access to settings elements
2012-02-18 12:36:59 +00:00
Lukas Eder
2648abf3c4 [#1160] Implement Field.contains(), .startsWith(), .endsWith() for numeric values, too 2012-02-18 12:19:03 +00:00