Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.
share|improve this question

1 Answer

up vote 1 down vote accepted

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.