|
1 |
| -<!-- $PostgreSQL: pgsql/doc/src/sgml/spi.sgml,v 1.52 2007/02/01 19:10:24 momjian Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/spi.sgml,v 1.53 2007/02/18 01:47:40 momjian Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="spi">
|
4 | 4 | <title>Server Programming Interface</title>
|
@@ -321,7 +321,8 @@ SPI_execute("INSERT INTO foo SELECT * FROM bar", false, 5);
|
321 | 321 | </para>
|
322 | 322 |
|
323 | 323 | <para>
|
324 |
| - You can pass multiple commands in one string. |
| 324 | + You can pass multiple commands in one string, but later commands cannot |
| 325 | + depend on the creation of objects earlier in the string. |
325 | 326 | <function>SPI_execute</function> returns the
|
326 | 327 | result for the command executed last. The <parameter>count</parameter>
|
327 | 328 | limit applies to each command separately, but it is not applied to
|
|