From: joaoaafonso at gmail.com (Joao Afonso) Date: Wed, 8 Jun 2005 15:20:57 +0100 Subject: [Pljava-dev] Obtaining Query from Trigger In-Reply-To: References: <42A68EDA.1090206@mailblocks.com> Message-ID: Ok, my mistake... I'll need to think of something else. But I still need to get the query that fired on an insert, update or delete. Could you help me with that?? Thanks in advance. On 6/8/05, Thomas Hallgren wrote: > Joao Afonso wrote: > > > Hi! > > > > I started using pljava two days ago, so I apologize if this was > >already posted before. > > > > I need to get the sql query that fired a trigger on a DB so that it > >can be re-issued to another DB. > > > > For example, if 'select * from users' fired a before select trigger, > >the string with the query should be somehow passed to the java > >function that is associated to that trigger. > > > > > I hate to dissapoint you but to my knowledge a trigger is never fired > for SELECT. Only INSERT, UPDATE, and DELETE will fire triggers. > > Regards, > Thomas Hallgren > > >