简体   繁体   English

尝试更新SQL数据库条目,收到SQL语法错误。 我如何找出这里出了什么问题?

[英]Trying to update an SQL database entry, receiving a SQL syntax error. How do I figure out what's going wrong here?

Below is my code to connect to a simple server and update information etc. 下面是我的代码,用于连接到简单的服务器并更新信息等。

package mysqltest;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class MySQLTest {
    static Connection con = null;
    static Statement stmt = null;
    static ResultSet result = null;

    static String url = "jdbc:mysql://localhost:3306/coffeeshop";
    static String user = "root";
    static String password = "";

    public static void main(String[] args) {                 
            // SQL query string          
            //update specifics
            String push1 = "INSERT INTO Coffees"
                + "(CoffeeName, SupplierID, Price, Sales, Total)"
                + "values"
                + "('Colombian', 95, 5.95, 0, 0)";

            String push2 = "INSERT INTO Coffees"
                + "(CoffeeName, SupplierID, Price, Sales, Total)"
                + "values"
                + "('French Roast', 27, 6.95, 0, 0),"
                + "('Espresso', 104, 7.95, 0, 0),"
                + "('Colombian Decaf', 95, 16.45, 0, 0),"
                + "('French Roast Decaf', 27, 8.45, 0, 0)";

            String push3 = "UPDATE Coffees"
                + "SET SupplierId=12, Total=2"
                + "WHERE CoffeeName='Colombian'";


            String push4 = "DELETE FROM Coffees WHERE CoffeeName='Colombian'";
            String query = "SELECT * FROM Coffees";
            //clear everything first

            //push updates
            connect();
            pushUpdate(push1);
            //need to reconnect after update as update closes connection after updates.
            connect();
            queries(query); 
            pushUpdate(push2);
            connect();
            queries(query);
            pushUpdate(push3);
            connect();
            queries(query);
            pushUpdate(push4);
            connect();
            queries(query);
}
    public static boolean connect(){
        boolean connect;
        try{
            con = DriverManager.getConnection(url, user, password);
            stmt = con.createStatement();
            connect = true;
        }catch(SQLException ex){
            System.out.println("SQLException caught: " + ex.getMessage());
            connect = false;
        }
        return connect;
    }

    public static void pushUpdate(String push){
        try{
            stmt.executeUpdate(push);
        }catch(SQLException ex){
            System.out.println("SQLException caught: " + ex.getMessage());
        }

        try{
            con.close();
            stmt.close();
        }catch(SQLException ex){
            System.out.println("SQLException caught: " + ex.getMessage());   
        }   
    }

    public static void queries(String query){
        try{
            result = stmt.executeQuery(query);
            System.out.printf("%-10s%-35s%-12s  %-9s%-7s%-7s\n", 
                "CoffeeID", "CoffeeName", "SupplierID", "Price", "Sales", "Total");             

            while (result.next()) { // loop until the end of the results                 
                    int coffeeID = result.getInt("CoffeeID");
                    String coffeeName = result.getString("CoffeeName");
                    int supplierID = result.getInt("SupplierID");
                    double price = result.getDouble("Price");
                    int sales = result.getInt("Sales");
                    int total = result.getInt("Total");
                    System.out.printf("%8d  %-35s%10d  %7.2f  %7d%7d\n", coffeeID, coffeeName, supplierID, price, sales, total);
                }

        }catch(SQLException ex){
            System.out.println("Exception caught: " + ex.getMessage());
        }finally {
            try {
                if (result != null) {
                    result.close();
                }
            }catch (SQLException ex){
                System.out.println("SQLException caught: " + ex.getMessage());
            }
        }
    }
}

Basically I have a table already created and I update the table according to the "push". 基本上,我已经创建了一个表,并根据“ push”更新了该表。 Push 1, 2, and 4 work fine, however 3 is throwing this error... 推1、2和4正常工作,但是3抛出此错误...

"SQLException caught: 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 '=12, Total=2WHERE CoffeeName='Colombian'' at line 1" “捕获到SQLException:您的SQL语法有错误;请检查与您的MariaDB服务器版本相对应的手册,以在第1行的'= 12,Total = 2WHERE CoffeeName ='Colombian'附近使用正确的语法”

Ok, so basically I've tested push3 as it is written in my program, written into the cmd prompt and it works fine. 好的,所以基本上我已经对push3进行了测试,因为它是在程序中编写的,并已写入cmd提示符,并且工作正常。 Obviously without using the "+" symbol. 显然不使用“ +”符号。

cmd prompt snippet cmd提示代码段

Spaces are important. 空间很重要。 This: 这个:

"UPDATE Coffees"
+ "SET SupplierId=12, Total=2"
+ "WHERE CoffeeName='Colombian'"

Becomes this: 变成这个:

"UPDATE CoffeesSET SupplierId=12, Total=2WHERE CoffeeName='Colombian'"

CoffeesSET is invalid and 2WHERE is invalid, resulting in the entire statement being unparseable. CoffeesSET无效,而2WHERE无效,导致整个语句2WHERE解析。 Add spaces where you need them: 在需要的地方添加空间:

"UPDATE Coffees "
+ "SET SupplierId=12, Total=2 "
+ "WHERE CoffeeName='Colombian'"

Looking at your string, it becomes obvious, that you have simply missing some whitespaces here. 查看您的字符串,很明显,您只是在这里缺少一些空格。 Your string becomes 您的字符串变成

UPDATE CoffeesSET SupplierId=12, Total=2WHERE CoffeeName='Colombian'. 更新CoffeesSET SupplierId = 12,总计= 2WHERE CoffeeName ='Colombian'。

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

相关问题 春季批处理-交易失败-我如何找出问题所在? - Spring-batch - transactions out of kilter - how do I figure out what's wrong? 这种SQL语法有什么问题? - What's wrong with this SQL syntax? 我找不到我的 sql 语法有什么问题 - I can't find out what's wrong with my sql syntax 当我使用 jdbc 创建 SQL 数据库时,出现此错误。 我在哪里做错了? - When I use jdbc to create SQL database , getting this error. where I am doing wrong? Eclipse向我显示错误对于布尔类型的参数类型,未定义运算符&&,int这里出了什么问题以及如何解决此问题? - Eclipse show me error The operator && is undefined for the argument type(s) boolean, int what's going wrong here and how to fix this? 我无法弄清楚出了什么问题,出现了“类型已定义的错误” - I can't figure out what's wrong, getting a 'type already defined error' 解析错误; 我已经尝试过,无法弄清楚出了什么问题? - Parsing error; I have tried and can't figure out what's wrong? 我用java和sql数据库做错了什么? - what did I do wrong with java and sql database? 我想弄清楚我的代码有什么问题 - i want to figure out what's wrong in my code 文件路径附近的SQL异常,我不确定此SQL语法出了什么问题 - SQL Exception near file path, I am not sure what's wrong with this SQL syntax
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM