blob: f6da811d6913e0b9257a36b75049c95aa53f505b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8" ?>
<sqlMap namespace="Complex" >
<statements>
<statement id="ComplexMap"
resultClass="int" >
select Account_ID from Accounts where Account_ID = #obj.Map.Id#
</statement>
<insert id="InsertComplexAccountViaInlineDefaultNull"
parameterClass="Hashtable" >
insert into Accounts
(Account_ID, Account_FirstName, Account_LastName, Account_Email)
values
(#obj.Map.acct.Id#, #obj.Map.acct.FirstName#, #obj.Map.acct.LastName#, #obj.Map.acct.EmailAddress:Varchar:no_email@provided.com#
)
</insert>
</statements>
</sqlMap>
|