[Zope] multiple INSERT in one sql method

Larry Luther l.luther@acm.org
Fri, 04 Jun 1999 23:52:08 -0700


Yes, I'm using Gadfly and have:

INSERT INTO table VALUES ( 'a', 'b', 'c', ... );

INSERT INTO table VALUES ( 'd', 'e', 'f', ... );

...

INSERT INTO table VALUES ( 'p', 'q', 'r', ... )

* Note the semicolon after all INSERTs but the last.

Larry