简体   繁体   English

Java:调用存储过程我得到mysql错误

[英]Java: Calling a stored-procedure I get mysql error

I'm trying to add a date value in yyyy-mm-dd format in mysql using a stored-procedure. 我正在尝试使用存储过程在mysql中以yyyy-mm-dd格式添加日期值。

In case I call the stored-procedure within mysql, I can insert the same data properly. 如果我在mysql中调用存储过程,我可以正确插入相同的数据。

However, when I'm trying to call it though java I get error: 但是,当我试图通过java调用它时,我得到错误:

com.mysql.jdbc.exceptions.jdbc4.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 'medication(1005,51,'2' at line 1

My stored-procedure is: 我的存储过程是:

CREATE DEFINER=`xxx`@`localhost` PROCEDURE `insert_eD_dispensed medication`(IN `prescription_mapping_id` int(11), IN  `patient_id` int(11),   IN `date_of_dispense` date )
    NO SQL
INSERT INTO `prescription_dispensation_mapping` (`prescription_mapping_id`,  `patient_id`,  `date_of_dispense` )

The call is: 电话是:

public boolean insert_eD_dispensation (String prescription_mapping_id,  String patient_id,  String date_of_dispense) {
        Connection conn = this.getDBMySQLCon();
        String queryString;
        PreparedStatement preparedStmt = null;
        try {
            queryString = " {CALL insert_eD_dispensed medication(?,?,?)}";
            preparedStmt = conn.prepareStatement(queryString);

            preparedStmt.setInt(1, toInteger(prescription_mapping_id));
            preparedStmt.setInt(2, toInteger(patient_id));
            preparedStmt.setDate(3, java.sql.Date.valueOf(date_of_dispense));
            preparedStmt.execute();
            conn.close();
            return true;
        } catch (SQLException e) {
            e.printStackTrace();
            return false;
        }
    }

The call of the java method is: java方法的调用是:

String prescription_mapping_id="1005"; 
String patient_id="1"; 
String date_of_dispense="2019-06-19"; 

boolean x = insert_eD_dispensation(prescription_mapping_id, patient_id, date_of_dispense) 

I think the problem could be in the signature of your proceduce. 我认为问题可能出在你的程序的签名上。 But also problems with timezone, here is a post for checking this. 但是还有时区的问题,这里有一个检查这个的帖子。 enter link description here 在此输入链接描述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM