You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dynamic insert columns and values using mybatis
Below i mentioned my code.Is it posible for doing like below...
<statement id="insert" parameterClass="Attributes">
insert into DataTable
<iterate open="(" close=")" conjunction=",">
(#[].AttributeName#)
</iterate>
(TenantID,ObjectID,Slot0,Slot1)
values
<iterate open="(" close=")" conjunction=",">
#[].AttributeValue#
</iterate>
</statement>
Like Ex: insert into TableName (id,name) values ('101','sekhar')
Original issue reported on code.google.com by msekhar...@gmail.com on 6 Jun 2013 at 1:52
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
msekhar...@gmail.com
on 6 Jun 2013 at 1:52The text was updated successfully, but these errors were encountered: