mysql 5.5 触发器,在mysql5.5上通过JDBC创建触发器时出错

This is my code :

triggerBuilder.append("DROP TRIGGER IF EXISTS `insert_associated_inquiry`; ");

triggerBuilder.append(" DELIMITER %% ");

triggerBuilder.append(" CREATE TRIGGER insert_associated_inquiry BEFORE UPDATE ON inquiry ");

triggerBuilder.append(" FOR EACH ROW Begin ");

triggerBuilder.append(" insert into associated_inquiries(inquiry_id , subject , content , inquiry_date , preferred_date ) " );

triggerBuilder.append("values");

triggerBuilder.append(" ( " );

triggerBuilder.append(" OLD.id , ");

triggerBuilder.append(" OLD.subject , " );

triggerBuilder.append(" OLD.content , " );

triggerBuilder.append(" OLD.created_on , " );

triggerBuilder.append(" OLD.preffered_date " );

triggerBuilder.append(" ) ; ");

triggerBuilder.append(" END %% ");

triggerBuilder.append(" DELIMITER ; ");

con.createStatement().execute(triggerBuilder.toString());

And this is the error thrown :

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax;

check the manual that corresponds to your MySQL server version for the right

syntax to use near 'DELIMITER %% CREATE TRIGGER insert_associated_inquiry

BEFORE UPDATE ON inquiry ' at line 1

What could be the reason and solution for this error.

Help please.Thanks.

解决方案

Don't use delimiters with JDBC and MySQL. Delimiters are only used by the MySQL console so that it can tell when a trigger, stored procedure, etc that you're typing in has ended. In JDBC, you put the whole SQL string together and then send it to the database. Because you're in control of when the SQL gets sent to the database, there's no need to use delimiters.

I removed the two DELIMITER lines and the use of the %% delimiter from your code, and sent the DROP TRIGGER command to the database separately. The code I was left with is as follows:

con.createStatement().execute("DROP TRIGGER IF EXISTS `insert_associated_inquiry`");

triggerBuilder.append(" CREATE TRIGGER insert_associated_inquiry BEFORE UPDATE ON inquiry ");

triggerBuilder.append(" FOR EACH ROW Begin ");

triggerBuilder.append(" insert into associated_inquiries(inquiry_id , subject , content , inquiry_date , preferred_date ) " );

triggerBuilder.append("values");

triggerBuilder.append(" ( " );

triggerBuilder.append(" OLD.id , ");

triggerBuilder.append(" OLD.subject , " );

triggerBuilder.append(" OLD.content , " );

triggerBuilder.append(" OLD.created_on , " );

triggerBuilder.append(" OLD.preffered_date " );

triggerBuilder.append(" ) ; ");

triggerBuilder.append(" END ");

con.createStatement().execute(triggerBuilder.toString());

This code appeared to work, in that I could run this code without error regardless of whether the trigger already existed. If the trigger did not previously exist it was created.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值