Jooq not returning primary key after store, on sqlite
问题 I'm using Gradle and https://github.com/etiennestuder/gradle-jooq-plugin, configured like that jooq { version = '3.10.6' foo(sourceSets.main) { jdbc { url = "jdbc:sqlite:${projectDir.absolutePath}/foo.sqlite" } } } I have the following dependencies of interest jooqRuntime 'org.xerial:sqlite-jdbc:3.21.0.1' compile 'org.xerial:sqlite-jdbc:3.21.0.1' My foo DB contains the following CREATE TABLE tree ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, grove_id INTEGER, type INTEGER NOT NULL,