On Mon, 2005-02-14 at 13:20 +0100, Ulrik Petersen wrote: > > > >Is it legal for me to have the prepare/step/finalize coding embedded as I've > >shown in my simple example above? Any help would be appreciated. > > > > > No, you cannot have nested queries on the same connection. To do that, > you should: >
Actually, you can have nested queries. But inner queries are not allowed to update (or insert or delete) the tables used by outer queries. -- D. Richard Hipp <[EMAIL PROTECTED]>

