繁体   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?

下面是我的代码,用于连接到简单的服务器并更新信息等。

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());
            }
        }
    }
}

基本上,我已经创建了一个表,并根据“ push”更新了该表。 推1、2和4正常工作,但是3抛出此错误...

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

好的,所以基本上我已经对push3进行了测试,因为它是在程序中编写的,并已写入cmd提示符,并且工作正常。 显然不使用“ +”符号。

cmd提示代码段

空间很重要。 这个:

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

变成这个:

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

CoffeesSET无效,而2WHERE无效,导致整个语句2WHERE解析。 在需要的地方添加空间:

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

查看您的字符串,很明显,您只是在这里缺少一些空格。 您的字符串变成

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

暂无
暂无

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

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