Members Area


Recommended Sites:

Related Keywords
database mac freeware download
jet database freeware download
sql database freeware download
ide database freeware download
dvd database freeware download
xml database freeware download
geo database freeware download
database. web freeware download
database web freeware download
db database freeware download
log to database freeware download
pad database freeware download
cd database freeware download
database .net freeware download
database pda freeware download
msi database freeware download
.net database freeware download
mp3 database freeware download
database sql freeware download
web database freeware download

Top Freeware Keywords
utility t free freeware download
jad exe freeware download
ico2png t free freeware download
java freeware download
file freeware download
application freeware download
code freeware download
html freeware download
command exe freeware download
tool freeware download
database freeware download
free t free freeware download
download freeware download
windows freeware download
utility freeware download
free freeware download
editor freeware download
list freeware download
protection freeware download
web freeware download
hex freeware download
development freeware download
search freeware download
embedded freeware download
db database freeware download
text freeware download
folder freeware download
activestate freeware download
reference freeware download
information freeware download



Navigation: Freeware Home - Development - Other - jOOQ

jOOQ 2.3.1 freeware     Save this freeware to your freeware selection - Saved Freeware


Author

Lukas Eder

OS WinXP, Windows Vista, Windows Vista x64, Windows 7, Windows 7 x64
Date Released May 15, 2012
Downloads 317
Filesize 1.10 MB
Keywords model SQL statement, create serializable object, serializable object generator, creator, create, generate
Your Rating
  - click to rate - you will be first!
jOOQ screenshot
[ View full size screenshot ]

Download jOOQ   Save Freeware   Report Spyware

jOOQ generates a simple Java representation of your database schema. Every table, view, stored procedure, enum, UDT is a class. jOOQ implements an easy-to-use active record pattern. It is NOT an OR-mapper, but provides a 1:1 mapping between tables/views and classes. Between columns and members. jOOQ allows for writing compile-time typesafe querying using its built-in DSL. ...

Download jOOQ   Save Freeware   Report Spyware


Database - jOOQ freeware - Download Notice

jOOQ Free Download - we do not host any jOOQ torrent files or links of jOOQ on rapidshare.com, depositfiles.com, megaupload.com etc. All jOOQ download links are direct jOOQ full download from publisher site or their selected mirrors.

Database - jOOQ freeware - Latest User Reviews

 Write a Review   


Database - jOOQ freeware - The Latest Versions History

Version Date Released Status Release Notes
2.3.1 May 15, 2012 New Release · Fix inaccurate simulation of TRUNC(number, decimals) for Derby
· Documentation bug: ctx.statement() can be replaced in executeStart(). This is not documented
· Compilation errors in generated source code when Postgres stored procedure parameter is called "NAME"
· Compilation errors in generated source code when Postgres data-type is "any" (with quotes!)
· Postgres code generation broken when not connecting with the owner of a schema
2.2.2 Apr 30, 2012 New Release Bug fixes:
· Oracle's DataTypeDefinition reports the length of a BLOB / CLOB data type to be 4000
· Code generation error in Oracle 10g when generating stored procedures
· NullPointerException when passing null to timestampDiff(Field, Field)
· Regression in insertInto(...).values(...). Cannot pass Field to values()
· NPE at org.jooq.util.AbstractDatabase.getOutputSchema()
2.2.1 Apr 16, 2012 New Release Bug fixes:
· Remove oracle.sql dependency also from OSGi information in pom.xml
· SQL syntax errors from sequences when using RenderMapping with defaultSchema
· DefaultBindContext logs as Util.class
· Compilation error in CUBRID generated artefacts referencing OBJECT types
· Avoid source code generation errors when generating code for unknown, dialect-specific data types
2.1.0 Mar 20, 2012 New Release Features and improvements:
· Add runtime configuration to pretty print rendered SQL
· Add SQLite relations support
· Add runtime configuration for SQL keyword style (upper case, lower case)
· Add runtime configuration for SQL reference style (upper case, lower case, as-is, quoted)
· Add code generation option to disable generation of records
· Add support for SQL Server data types timestamp and rowversion
· Load default Settings from the classpath at
· /jooq-settings.xml, or from -Dorg.jooq.settings
· Specify main-class in jOOQ Console's manifest.mf and include dependency in jar file
· Add ColumnDefinition.isNullable()
Add support for the relational division operation:
· A.divideBy(B).on(A.ID.equal(B.A_ID)).returning(A.X, ...)
· Add Factory.batch(Collection
2.0.5 Mar 1, 2012 New Release Features and improvements:
· Add Field.equalIgnoreCase(), Field.notEqualIgnoreCase()
· Add class prefixes, suffixes and other options to the code generator
· Add runtime configuration
· Let Field.contains() support the Postgres ARRAY @> ARRAY operator
· Add ResultQuery.fetchResultSet() to return the underlying JDBC result set
· Add Result.isNotEmpty() for convenience
· Add runtime configuration to specify whether jOOQ should execute java.sql.PreparedStatement (with bind variables) or a java.sql.Statement (with inlined parameters)
· Add Query.getSQL(boolean) to indicate that bind values should be inlined (as a convenience for Factory.renderInlined(QueryPart))
· Add Cursor.resultSet() to expose the underlying ResultSet
· Allow for optional "http://www.jooq.org/xsd/jooq-codegen-2.0.4.xsd"
· namespace in jooq-codegen configuration
· Add E MySQLFactory.enumType(Class, int) for enum reverse lookups of MySQL-specific enums
· Support matching numbers with LIKE, e.g. ID LIKE '3%'
2.0.4 Feb 14, 2012 New Release This release introduced many improvements to source code generation. These improvements include:
· Maven and standalone code generation now use the same XML configuration, which is read by jOOQ-codegen using JAXB. This allows for more complex configuration elements in the future jOOQ-codegen can now handle multi-schema databases and generate code for tables referencing tables from other schemata. This is integration tested against the SQL Server AdventureWorks database jOOQ now allows to generate simple POJOs in addition to Records and to annotate both POJOs and Records with JPA annotations such as @Entity, @Table, @Id, @Column, @UniqueConstraint, etc.
· You can migrate your existing .properties configuration by running org.jooq.util.GenerationTool /your.properties migrate
· Besides that, there is a lot of ongoing work to improve the integration of Oracle's TABLE and VARRAY types.

Features and improvements:
· Add JPA annotations to generated POJOs / Records
2.0.3 Feb 6, 2012 New Release This release focuses on increased compatibility between various SQL dialect integrations as far as ARRAY and JOIN support is concerned:
· ARRAY types are only available in H2, HSQLDB, Oracle, Postgres. Nevertheless, they can be somewhat simulated in other dialects using nested selects with UNION ALL. Increased compatibility leads to a nicer API, where ARRAYs are used along with ALL/ANY quantifiers, for instance.
· JOIN syntaxes can be quite powerful in SQL. Apart from simulating NATURAL JOIN, JOIN USING clauses, as well as a synthetic "KEY JOIN" syntax, jOOQ now also supports nesting
· JOIN expressions to create more complex table sources.

Features and improvements:
· 578 - Add KEY JOIN syntax to simulate joining using generated
· foreign keys
· 577 - Simulate NATURAL JOIN syntax, where this is unavailable
· 582 - Simulate JOIN USING syntax, where this is unavailable
· 671 - Allow for nesting JOIN clauses
· 676 - Add Table.join() methods to create more flexible table
· sources
2.0.2 Jan 10, 2012 New Release The main improvements include:
· The whole jOOQ API is now annotated with a new org.jooq.Support annotation to help you assess whether a certain SQL clause is available in your database or not. This is particularly useful when your application should support several databases at once (e.g. MySQL, Postgres, Oracle)
· The Oracle PIVOT clause is now formally supported for advanced statistical queries in Oracle. This clause will be simulated in other dialects in the future.
· The DATE data type can be mapped to TIMESTAMP. This important when you query a legacy Oracle database, where DATE columns can also contain time information
· Several convenience methods have been added for more fluent syntax, when using plain SQL result queries, subqueries as tables, or when unnesting arrays in ANY() and ALL() quantifiers

Features and improvements:
· Add support for Oracle's PIVOT clause
· Add support for using ANY, ALL with arrays, not just with subselects
1.7.0 Nov 28, 2011 New Release · Bug fixes
· SelectConditionStep should extend SelectConnectByStep, not SelectGroupByStep
· AbstractRecord.into() fails to convert java.sql.Date into java.util.Date
· In the event of name clash (same name for table and field) generated code has errors
· Calling UpdatableRecord.setValue() twice with the same argument causes the changed flag to be reset to false
· Always set the changed flag to true in Record.setValue()
· Empty Password for jooq-codegen-maven causes NPE
1.6.5 Aug 29, 2011 New Release Features and improvements:
· Add Result.exportXML() to retrieve a DOM document similar to that of .formatXML()
· Add support for loading of CSV data into tables
· Add List fetch(int, Class) and fetch(String, Class) convenience methods
· Add support for INSERT .. RETURNING or simulate it where not available
· Add T[] fetchArray(int, Class) and fetchArray(String, Class) convenience methods
· Add T fetchOne(int, Class) and fetchOne(String, Class) convenience methods


Most popular database freeware downloads in Other

PyQt4 for Mac OS X 4.9.1 freeware download


... classes that integrate with open-source and proprietary SQL databases. It includes editable data models for database tables that can be used with GUI classes. It also includes an implementation of SQLite. The QtSvg module contains classes for displaying the contents ...
Details   Download   Save Freeware

GeoMaker 2.0 freeware download


Create the GeoDatabase for the entire world. This program create the geographical location Latitude, Longitude, and Altitude (Elevation) for every city, village, region, state, county in the World. The program crawls the data from the website www.heavens-above.com which collect data from US Geological Survey for the USA (and dependencies) and The ...
Details   Download   Save Freeware

Zorba 2.2.0 freeware download


... for that. XQuery unifies development for all tiers; database, content management, application logic, and presentation. Benefit from a rich ecosystem of tools. Eclipse plugins, command-line interface, and debugger. ...
Details   Download   Save Freeware

eXtremecode ASP.Net Generator 10.6 freeware download


... simply a tool which takes a collection of database connections as an input and produce a well-formed ... Definition Generator (short name XDG Application), for generating database schema which takes collection of database connections as an input and gives databases schema (definition) in the form of an XML ... ), for generating Asp.Net application which takes generated database definitions and predefined templates as an input and ...
Details   Download   Save Freeware

Jailer 4.0.7 freeware download


Jailer is a tool for database subsetting and sampling, schema browsing, and rendering. It exports consistent, referentially intact row-sets from relational databases. It removes obsolete data without violating integrity. It ... consistent and referentially intact row-sets from your productive database and imports the data into your development and test environment. * Improves database performance by removing and archiving obsolete data without ...
Details   Download   Save Freeware

ClanLib SDK 2.3.6 freeware download


... library with sockets, web, irc and game interfaces Database supporting SQLite Sound supporting wav, tracker formats and ogg-vorbis Basic cross platform runtime (threading, file I/O, XML/DOM, etc.) Template based signal library (type-safe callbacks) Integrated resource management ...
Details   Download   Save Freeware

OpenXava 4.4.1 freeware download


... is done. · Adapted to work with legacy database schemas. · Supports any application server (Tomcat, JBoss, WebSphere, etc). · Supports JSR-168: All OpenXava modules are standard portlets too. · Persistence engine: EJB3 JPA, Hibernate or EJB2 CMP. You choose. · It's tested with the portals: JetSpeed 2, WebSphere Portal, ...
Details   Download   Save Freeware

FrameworkGen 4.1.0.0 freeware download


... Tier architecture. By simply selecting a SQL Server database, FrameworkGen will build Stored Procedures in SQL Server ... The data access code FrameworkGen Generates is database neutral although FrameworkGen itself currently works with SQL Server only. The data retrieval code uses SqlDataReaders for read only forward only data retrieval which ...
Details   Download   Save Freeware

Portable DevProject Manager 1.7.8.0 freeware download


... designed to run on USB devices. Additional no database server like MySQL or MS SQL is needed. ...
Details   Download   Save Freeware

Karrigell 3.1.1 freeware download


... and intuitive syntax. It is independent from any database, ORM or templating engine, and lets the programmer ... application, including a Python interpreter with the SQLite database, can be started with a double-click and no configuration on any machine or from a USB key. Installing behind an Apache server is ...
Details   Download   Save Freeware