views:

39

answers:

1

Can we manage UDFs, and triggers in Derby database from our own Java Application ?

By managing I mean :

  1. checking if it exists;
  2. adding;
  3. removing.
+1  A: 

You can use executeUpdate() to execute the desired DDL, e.g. CREATE FUNCTION, DROP FUNCTION, CREATE TRIGGER, DROP TRIGGER, etc.

trashgod