Commit Graph

336 Commits

Author SHA1 Message Date
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
6354152c96 [#1156] Bad inlining of DATE / TIME / TIMESTAMP data types in Ingres (and other dialects, when the setting differs from the default) - Fixed unit tests after recent changes 2012-02-24 15:25:35 +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
1ef8ecaa86 [#1177] Add SQL Console module to jOOQ - updated license 2012-02-23 18:30:58 +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
Lukas Eder
396f999fb7 [#1161] Use reflection to remove compile-time dependency on ojdbc for creating ARRAYs 2012-02-18 10:07:44 +00:00
Lukas Eder
5561e3b071 [#1162] Integrate jOOR into jOOQ for simpler reflection 2012-02-18 10:06:20 +00:00
Lukas Eder
06437210ad Fixed NullPointerException 2012-02-17 11:31:09 +00:00
Lukas Eder
5cd584787e [#1159] Support matching numbers with LIKE, e.g. ID LIKE '%33%' 2012-02-17 10:20:05 +00:00
Lukas Eder
283a43664e [#1156] Bad inlining of DATE / TIME / TIMESTAMP data types in Ingres (and other dialects, when the setting differs from the default) 2012-02-17 09:56:48 +00:00
Lukas Eder
30f44b809a [#1154] Bad inlining of byte[] in most dialects 2012-02-16 23:50:42 +00:00
Lukas Eder
0071b65f4b [#1154] Bad inlining of byte[] in most dialects - Fixed for H2
[#1155] byte[] are erroneously converted to String when using Record.intoArray()
2012-02-16 23:03:24 +00:00
Lukas Eder
83ee1dc699 [#1153] Bad inlining of booleans in Sybase ASE / DB2 / Oracle / SQL Server / SQLite 2012-02-16 22:23:15 +00:00
Lukas Eder
b3f0b08d95 [#1145] Add runtime configuration to specify whether a java.sql.PreparedStatement (with bind variables) or a java.sql.Statement (with inlined parameters) should be executed 2012-02-16 20:43:55 +00:00
Lukas Eder
d429f5a417 [#1152] Add <E extends java.lang.Enum<E> & org.jooq.EnumType> E MySQLFactory.enumType(Class<E>, int) for enum reverse lookups of MySQL-specific enums 2012-02-16 18:25:13 +00:00
Lukas Eder
f095d9aaf1 [#1146] Add Query.getSQL(boolean) to indicate that bind values should be inlined (as a convenience for Factory.renderInlined(QueryPart)) 2012-02-15 22:39:05 +00:00
Lukas Eder
c0764d20c3 [#492] RUNTIME-CONFIG: Add run-time configuration
[#1151] Deprecate SchemaMapping in favour of new runtime configuration
Re-generated jooq-meta artefacts
2012-02-15 21:41:16 +00:00
Lukas Eder
fc682afd31 [#1140] Add ResultQuery.fetchResultSet() to return the underlying JDBC result set
[#1148] Add Cursor.resultSet() to expose the underlying ResultSet
2012-02-15 18:50:13 +00:00
Lukas Eder
95e04de914 [#1142] Rename Result.exportXML() to Result.intoXML() to stay more consistent 2012-02-15 17:59:02 +00:00
Lukas Eder
4bd3feea8d [#1143] Add Result.isNotEmpty() for convenience 2012-02-15 17:55:39 +00:00
Lukas Eder
db539ad29c Release 2.0.5-SNAPSHOT 2012-02-15 17:47:33 +00:00
Lukas Eder
8a1ca11662 Release 2.0.4 2012-02-12 14:37:58 +00:00
Lukas Eder
08684517d1 [#8] Add JPA annotations to generated POJOs 2012-02-11 11:39:31 +00:00
Lukas Eder
109e632837 [#1129] Allow for using Param in LIMIT .. OFFSET clauses
[#1132] Add RenderContext.castMode() to allow for avoiding casts where this is not really needed
2012-02-11 09:34:29 +00:00
Lukas Eder
69c6176943 [#1131] DB2: [No authorized routine named "LIKE" of type "FUNCTION" having compatible arguments was found] when using Field.like(concat(x, y)) 2012-02-10 20:17:01 +00:00
Lukas Eder
edcd307b04 [#1125] Postgres needs casting for date time data types in queries like SELECT ? FROM DUAL 2012-02-10 19:22:54 +00:00
Lukas Eder
ff5e99870a Added some useful conversion methods 2012-02-10 18:12:03 +00:00
Lukas Eder
59a5f81a32 [#1125] Postgres needs casting for date time data types in queries like SELECT ? FROM DUAL - Added marker comment 2012-02-08 23:01:14 +00:00
Lukas Eder
900a224bc0 [#1117] NullPointerException when passing an ArrayRecord containing a null array to a stored function in Oracle 2012-02-04 21:28:26 +00:00
Lukas Eder
5d0ebca5c5 [#884] ARRAY's and UDT's are not correctly inlined when rendering inlined SQL 2012-02-04 21:17:21 +00:00
Lukas Eder
1a81b4a388 [#1114] Syntax error when unnesting TABLE of OBJECT in Oracle. The unnested table contains several columns but jOOQ only unnests "COLUMN_VALUE"
[#1115] Add support for Oracle VARRAY/TABLE of OBJECT types
2012-02-04 21:02:20 +00:00
Lukas Eder
71c9bda264 [#1111] VARRAY element type information is lost when unnesting VARRAY's returned from functions in Oracle 2012-02-03 17:46:40 +00:00
Lukas Eder
6514732d4e [#1110] VARRAY element type information is lost when unnesting VARRAY's in Oracle 2012-02-03 17:18:35 +00:00
Lukas Eder
bbd02c1813 [#1089] Add Field.contains(), .startsWith(), .endsWith() as a convenience for Field.like() (including escaping) 2012-02-03 15:50:04 +00:00