Is it possible in ibatis to have more than one selectKey clause in the same insert query?

StackOverflow https://stackoverflow.com/questions/17046520

  •  31-05-2022
  •  | 
  •  

Question

I have need to populate 2 different ids in the same table on insert and I am trying to use selectKey to pull values from Oracle sequence to populate the ids.

With one id and selectKey I have no problems but when I add the second selectKey the value does not seem to be populating (see insert stanza below).

Is it possible to do this? Or will I need to create another query to update the second id?

Thanks

<insert id="create" parameterClass="MyObject">
<selectKey keyProperty="id" resultClass="long" type="pre">
  <include refid="sequences.myObjectId" />
</selectKey>
<selectKey keyProperty="mySecondId" resultClass="long" type="pre">
  <include refid="sequences.mySecondId" />
</selectKey>    
INSERT INTO MY_OBJECT_TABLE 
(
MY_OBJECT_ID,
MY_SECOND_ID,
...
)
VALUES
)
#id#,
#mySecondId#,
...
)
</insert>
Was it helpful?

Solution

THERE CAN BE ONLY ONE!

Eventually I have discovered that there can only be one stanza in an ibatis insert stanza.

However I was able to update the second key as follows (I believe this is oracle specific):

<insert id="create" parameterClass="MyObject">
<selectKey keyProperty="id" resultClass="long" type="pre">
  <include refid="sequences.myObjectId" />
</selectKey>
INSERT INTO MY_OBJECT_TABLE 
(
MY_OBJECT_ID,
MY_SECOND_ID,
...
)
VALUES
)
#id#,
MY_SECOND_ID_SEQUENCE.nextval,
...
)
</insert>

MY_SECOND_ID_SEQUENCE is the Oracle sequence name that I previously defined.

OTHER TIPS

Not sure about IBatis but in MyBatis we can surely do like this :

 <insert id="some_id">

        <selectKey keyProperty="key1,key2" keyColumn="key_1,key_2" order="BEFORE" resultType="java.util.Map">
            SELECT seq_nextval('seq') as key_1, seq_nextval('seq') as key_2 from dual
        </selectKey>

        INSERT INTO table_name (column1, column2) 
        VALUES (#{key1},#{key2})

 </insert>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top