summaryrefslogtreecommitdiff
path: root/tests/unit/SQLMap/maps/mssql/Complex.xml
blob: 5a1bbf9ce610545dac706c2bc0d478b17e61d991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8" ?> 
<sqlMap namespace="Category" >
	
	
		<statement id="ComplexMap"
			resultClass="int" >
			select Account_ID from Accounts where Account_ID = #obj.Map.Id#
		</statement>
		
		<insert id="InsertComplexAccountViaInlineDefaultNull"
			parameterClass="array" >
			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>		
		

	
</sqlMap>