Can we manage UDFs, and triggers in Derby database from our own Java Application ?
By managing I mean :
- checking if it exists;
- adding;
- removing.
You can use executeUpdate()
to execute the desired DDL, e.g. CREATE FUNCTION, DROP FUNCTION, CREATE TRIGGER, DROP TRIGGER, etc.