Skip to content
Advertisement

Getting id after insert within a transaction (Oracle)

Let’s say I have three tables: team, player, team_player. Table team_player is a bridge table allowing a “many to many” relationship.

When someone wants to create a new team, they specify the initial players on that team.

How do I insert both the team and team_player rows in the same transaction? That is, I’d like to insert all the team_player records before committing to the new team row. I am using JDBC and Oracle.

When I try the code below, teamId is filled with a string of letters even though team.id is a number (that is incremented by a trigger). So, this does not seem to be the id of the record which I just tried to insert (but didnt commit to yet).

JavaScript

This is where I read about RETURN_GENERATED_KEYS: How to get the insert ID in JDBC?

Advertisement

Answer

The Oracle JDBC Driver does not support getGeneratedKeys() – you are manually generating the keys in your trigger, presumably from a SEQUENCE.

You can use Oracle’s returning clause:

JavaScript

Or grab the last sequence number with a second SQL query:

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