我们可以管理 UDF,以及 Derby 数据库中的触发器来自我们自己的 Java 应用程序?
我所说的管理是指:
Can we manage UDFs, and triggers in Derby database from our own Java Application ?
By managing I mean :
您可以使用 [executeUpdate()](http://java.sun.com/javase/6/docs/api/java/sql/PreparedStatement.html#executeUpdate()) 执行所需的 DDL,例如创建函数、删除函数、创建触发器、删除触发器等。
executeUpdate()
You can use [executeUpdate()](http://java.sun.com/javase/6/docs/api/java/sql/PreparedStatement.html#executeUpdate()) to execute the desired DDL, e.g. CREATE FUNCTION, DROP FUNCTION, CREATE TRIGGER, DROP TRIGGER, etc.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
您可以使用 [
executeUpdate()
](http://java.sun.com/javase/6/docs/api/java/sql/PreparedStatement.html#executeUpdate()) 执行所需的 DDL,例如创建函数、删除函数、创建触发器、删除触发器等。You can use [
executeUpdate()
](http://java.sun.com/javase/6/docs/api/java/sql/PreparedStatement.html#executeUpdate()) to execute the desired DDL, e.g. CREATE FUNCTION, DROP FUNCTION, CREATE TRIGGER, DROP TRIGGER, etc.