Subject | Re: How to read the content of the trigger!!! |
---|---|
Author | mirom_2005 |
Post date | 2005-05-23T12:30:35Z |
IMHO,
you must select it from RDB$TRIGGERS like
Select RDB$TRIGGER_SOURCE from RDB$TRIGGERS
Where RDB$SYSTEM_FLAG = 0
and RDB$TRIGGER_NAME = <your triggername>
I have the same problems with the content of stored procedures and
want to create a FirebirdDatabaseMetadata interface to implement those
methods (see thread with Roman).
But I have some problems to import the CVS sources into my eclipse and
so I can't compile my sources. Does anyone have some tipps?
Mike
you must select it from RDB$TRIGGERS like
Select RDB$TRIGGER_SOURCE from RDB$TRIGGERS
Where RDB$SYSTEM_FLAG = 0
and RDB$TRIGGER_NAME = <your triggername>
I have the same problems with the content of stored procedures and
want to create a FirebirdDatabaseMetadata interface to implement those
methods (see thread with Roman).
But I have some problems to import the CVS sources into my eclipse and
so I can't compile my sources. Does anyone have some tipps?
Mike
--- In Firebird-Java@yahoogroups.com, Dinh Tu Nguyen <ndt2603@g...> wrote:
> Hi,group!
> I've gotten all the triggers name in DatabaseMetadata,but can't get
> the content of the trigger.Thanks in advance.