|
软件开发时,为了降低软件瓶颈的可能性就将一些操作数据库的语句使用SQL来实现。比如:
当插入操作时,要记录当时事务提交时的时间。
所使用的SQL语句为:
insert into login(account_code,login_date) values ('account_code',DATE_FORMAT(now(), '%Y-%m-%d %H:%i:%s'));
其中,DATE_FORMAT(now(), '%Y-%m-%d %H:%i:%s') 为MySql自带的函数。
我配置好了JDBC Request 、 JDBC Connection Configuration 。但,执行时,其实出了错误。错误如下:
Thread Name: 线程组 1-10
Sample Start: 2014-07-09 15:11:59 CST
Load time: 1
Latency: 1
Size in bytes: 61
Headers size in bytes: 0
Body size in bytes: 61
Sample Count: 1
Error Count: 1
Response code: null 0
Response message: java.sql.SQLException: number of arguments (3) and number of types (2) are not equal
Response headers:
com.mysql.jdbc.JDBC4Connection@13864d9
SampleResult fields:
ContentType: text/plain
DataEncoding: UTF-8
请问如何正确实现题目所提出的问题呢?? |
|