lucasb has quit [Quit: Connection closed for inactivity]
nirvdrum has joined #jruby
<annabackiyam[m]>
<headius[m] "Unfortunately I am not familiar "> When I try to insert a record, it keeps kicking me back JDBC Error OCIError: ORA-02289: sequence does not exist. There's no user defined sequence on the table. It has an ID column auto-generated by Oracle.
ur5us has quit [Ping timeout: 245 seconds]
<rwilliams[m]>
annabackiyam: What does the generated sql look like from the logs?
<rwilliams[m]>
I don't know if this is an option but can you try an alter table using this to define the ID field `NUMBER(10) GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY`
<rwilliams[m]>
There were a couple commits referencing this in the enhanced adapter they swapped for using NOT NULL in their create statements
<rwilliams[m]>
* There were a couple commits referencing this in the enhanced adapter they swapped from using NOT NULL in their create statements
<rwilliams[m]>
I'm not sure if that will make a difference
<rwilliams[m]>
headius: Did you end up diving into that submodule workspace idea you posted on twitter? I'm pretty curious how it would play out. Seems like it would work pretty well.
<headius[m]>
Not sure which thing you are referring to
<rwilliams[m]>
You were going to create a main git repo with all your projects as git submodules to you could just clone your workspace, I think