Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bjansen/ceylon-jooq-adapter

Easy integration of jOOQ in your Ceylon project
https://github.com/bjansen/ceylon-jooq-adapter

ceylon jooq

Last synced: 4 days ago
JSON representation

Easy integration of jOOQ in your Ceylon project

Awesome Lists containing this project

README

        

# ceylon-jooq-adapter
Easy integration of jOOQ in your Ceylon project.

## Usage

**module.ceylon:**

```ceylon
native("jvm")
module com.my.module "1.0.0" {
import com.github.bjansen.ceylon.jooqadapter "0.1.0";
}
```

**jooq-config.xml**:

```xml

...


org.jooq.util.DefaultGenerator


com.github.bjansen.ceylon.jooqadapter.CeylonNamingStrategy



...



DateTime
ceylon.time.DateTime
com.github.bjansen.ceylon.jooqadapter.DateTimeConverter


String
ceylon.language.String
com.github.bjansen.ceylon.jooqadapter.StringConverter

...




DateTime
datetime


Integer
(integer|int)

...


```

More information here: [Ceylon + jOOQ = <3](http://bjansen.github.io/ceylon/2015/08/24/ceylon-plus-jooq-equals-heart.html)