使用SQL发送适配器可以对SQL Server数据库中的记录进行更新。更新SQL Server数据库的XML的语法格式如下:
<InboundRootElementName xmlns:ns0="http://yournamespace">
<sync>
<before>
<TableName col1='value' col2='value' />
</before>
<after>
<TableName col1='value' col2='value' />
</after>
</sync>
</InboundRootElementName>
如果是向表中插入数据,则只有after段,没有before段;如果是删除数据,则只有before段,没有after段;修改数据时,before段是查询条件,after段是更新后的数据。
在编写xml实例时,TableName以实际的表名称替换,col1和col2以表中实际的字段名替换,value以实际要更改或查询的值替换。http://yournamespace以设置发送端口时,设置的文档目标命名空间来替换。
例如:
<InboundRootElementName xmlns:ns0="http://sqlsendport">
<sync>
<before>
<Region RegionID='1'/>
</before>
<after>
<Region RegionDescription='test'/>
</after>
</sync>
</InboundRootElementName>
是将Region表中RegionID为1记录的RegionDescription字段设置为test。