[Zope] Multiple database updates
Dieter Maurer
dieter@handshake.de
Thu, 20 Mar 2003 21:04:47 +0100
garry saddington wrote at 2003-3-19 17:52 +0000:
> I have a form which retrieves data from a database table and displays it for
> the user to amend. Many records are able to be changed and i would then like
> to be able to update all these records in the table. I can not find a way to
> do this as yet. Can anyone help?
You can issue several calls to a (or several) Z SQL Methods
in a single request.
Keep in mind that Z SQL Methods take their arguments from
either the REQUEST object or explicitely passed in by keyword
arguments.
Dieter