Hi
I need to produce a wfs update to multiple rows, computing the value of
property using existing value (like property = property * 2).
Is it posible?
I'm preparing this xml, but, I need complete it:

<wfs:Update typeName="mylayer">                        
 <wfs:Property> 
   <wfs:Name>myattribute</wfs:Name>   
   <wfs:Value> </wfs:Value>  <---- I need put the computed value here 
 </wfs:Property> 
 <ogc:Filter> 
   <ogc:And> 
     <ogc:PropertyIsGreaterThan>   
       <ogc:PropertyName>id</ogc:PropertyName> 
       <ogc:Literal>9</ogc:Literal>                      
     </ogc:PropertyIsLessThan> 
     <ogc:PropertyIsLessThan> 
       <ogc:PropertyName>id</ogc:PropertyName> 
       <ogc:Literal>19</ogc:Literal> 
     </ogc:PropertyIsLessThan> 
   </ogc:And> 
 </ogc:Filter> 
</wfs:Update>

I need to produce a sql like this:

update mylayer set myattribute = myattibute * 2 where id between 10 and 20;

Is it posible?

Thanks

jorge infante
rosario - santa fe - argentina




--
Sent from: http://osgeo-org.1560.x6.nabble.com/GeoServer-User-f3786390.html


_______________________________________________
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to