<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18783">
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2 face=Arial>Hi Leo</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>I'm developing a geometric system as opposed to
geographic (basically an engineering drawing).</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>I have a fixed field, representing a peice of
paper, within which the user can add one to four objects.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>These object are placed within the field
according to the total number of objects.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>The first object 'A' is placed in the center and
then the user adds lines (one to eight at the moment) as attributes to the
object.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>When the user adds a second object, I want to
update the attributes of object A to satisfy the new placement of object
A.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>When the user places a third object then both,
object A and B, need to be updated.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>At the moment, my updates haven't worked as I
get either a null or multiple return.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>Any suggestions for updating the lines for each
object would be greatly appreciated.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>Thanks</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>Bob</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<BLOCKQUOTE
style="BORDER-LEFT: #000000 2px solid; PADDING-LEFT: 5px; PADDING-RIGHT: 0px; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px">
<DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV
style="FONT: 10pt arial; BACKGROUND: #e4e4e4; font-color: black"><B>From:</B>
<A title=lr@pcorp.us href="mailto:lr@pcorp.us">Paragon Corporation</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A
title=postgis-users@postgis.refractions.net
href="mailto:postgis-users@postgis.refractions.net">'PostGIS Users
Discussion'</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Monday, July 20, 2009 7:45 PM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [postgis-users] Loop or
Cursor</DIV>
<DIV><BR></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial>What kind of operation? Even an update statement
might suffice. There are many ways to cleverly control the flow of an
update that do not necessitate doing a loop or cursor.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial>Also keep in mind even within a function used in
a SELECT statement of a query, PostgreSQL allows you to run updates
and do all sorts of crazy things like launch perl scripts and bash
scripts. So for example you can mail to your whole membership simple by
doing this</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial>SELECT member_name, send_mail(member_id) As
did_it_send</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial>FROM membership</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial>WHERE gross_income > 1000000 and active =
true</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial>It is very convenient for making rule
processors.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial>Leo</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=815403702-21072009><FONT color=#0000ff
size=2 face=Arial></FONT></SPAN> </DIV><BR>
<DIV dir=ltr lang=en-us class=OutlookMessageHeader align=left>
<HR tabIndex=-1>
<FONT size=2 face=Tahoma><B>From:</B>
postgis-users-bounces@postgis.refractions.net
[mailto:postgis-users-bounces@postgis.refractions.net] <B>On Behalf Of </B>Bob
Pawley<BR><B>Sent:</B> Monday, July 20, 2009 1:43 PM<BR><B>To:</B> PostGIS
Users Discussion<BR><B>Subject:</B> [postgis-users] Loop or
Cursor<BR></FONT><BR></DIV>
<DIV></DIV>
<DIV><FONT size=2 face=Arial>Hi</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>I need to access a number of rows, one at a time
to perform an operation on each.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>Under what conditions would I consider using a
loop command, rather than (or with) a cursor?</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>Bob</FONT></DIV>
<P>
<HR>
<P></P>_______________________________________________<BR>postgis-users
mailing
list<BR>postgis-users@postgis.refractions.net<BR>http://postgis.refractions.net/mailman/listinfo/postgis-users<BR></BLOCKQUOTE></BODY></HTML>