The below code in SQLServerDatabase.java seems to be incorrect. If I have 
more than one sequence then it fails.


    private boolean is2012() {
        if (is2012 == null) {
            is2012 = create().selectCount()
                             .from(SEQUENCES)
                             *.fetchOne(0, boolean.class);*
        }
        return is2012;
    }

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to