Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bjansen/ceylon-jooq-adapter
- Owner: bjansen
- License: mit
- Created: 2015-08-24T16:51:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-08T15:00:34.000Z (almost 8 years ago)
- Last Synced: 2024-10-31T15:47:59.692Z (about 2 months ago)
- Topics: ceylon, jooq
- Language: Ceylon
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)