Skip to content
Advertisement

Error with the ID generated when i insert new data in my database Java Derby

i am building an app with a function to insert new Users in the database with Java Derby.

Everything is going well, but when i close the app, i run it again and i try to insert a new User (called USUARIO in the DB) the new ID generated of the User is one hundred times more than the last one on the last run.

This is the output console that it shows me:

This is the code that i am creating new data:

This is my entity Usuario class:

I dont know what could be happening here.

Any help? thank you!

Advertisement

Answer

This could happen when you hadn’t shut down Derby. See derby.language.sequence.preallocator.

You can shut down by adding ;shutdown=true to your JDBC URL.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement