简体   繁体   English

JDBC 准备语句语法错误

[英]JDBC Prepared Statement Syntax Error

I am trying to insert into a vehicle table using a prepared statement.我正在尝试使用准备好的语句插入到车辆表中。 This is the table shown in PHPMyAdmin .这是 PHPMyAdmin 中显示的表

This is my java code这是我的java代码

 try {
        String sql = "INSERT INTO vehicle (vin, serial, make, model, year, reg.no., status) VALUES (?, ?, ?, ?, ?, ?, ?)";
        PreparedStatement statement = con.prepareStatement(sql);
        statement.setString(1, vin);
        statement.setString(2, serial);
        statement.setString(3, make);
        statement.setString(4, model);
        statement.setInt(5, 10);
        statement.setInt(6, 17);
        statement.setString(7, status);
        System.out.println(statement.toString());

        int rowsInserted = statement.executeUpdate();
        if (rowsInserted > 0) {
            System.out.println("A new user was inserted successfully!");
        }
    } catch (Exception ex) {
        System.out.println(ex);
    }

and this is the resulting error这是由此产生的错误

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ' status) VALUES ('dfg', 'dfgfg', 'fg', 'sd564', 10, 17, 'dsf')' at line 1

I am clueless.我一窍不通。 Does it have to do with me not passing a value for the primary key "id" column in the table?这与我没有为表中的主键“id”列传递值有关吗?

reg.no. isn't a valid column name.不是有效的列名。 If you really need to use it, you should quote it:如果你真的需要使用它,你应该引用它:

INSERT INTO vehicle (vin, serial, make, model, year, `reg.no.`, status) 
-- Here ---------------------------------------------^-------^
VALUES (?, ?, ?, ?, ?, ?, ?)";

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

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