您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册,以了解在“?"附近使用的正确语法.在第 1 行

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 #39;?#39; at line 1(您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册,以了解在“?附近使用的正确语法.在第 1 行) - IT屋-程序员软
本文介绍了您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册,以了解在“?"附近使用的正确语法.在第 1 行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 JavaJDBC 制作库存系统.我在查询表时遇到了这个错误.

I'm making an inventory system using Java and JDBC. I have got this error some how when querying a table.

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 你的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册,以了解在?"附近使用的正确语法.在第 1 行

com.mysql.jdbc.exceptions.jdbc4.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 '?' at line 1

下面是代码

public static void SearchUser() throws SQLException{        
    String ordersquery = "SELECT * FROM orders WHERE submittedBy = ?";      
    User userDetails = UserController.getUserDetails(username);//gets the details from user tables          
    if (userDetails != null){           
        System.out.println("----Menu----");
        System.out.println();
        System.out.println("1. View Orders Made By This User");
        System.out.println("2. View Most Expensive Parts Currently Taken Out By This User");
        System.out.println();
        System.out.println("9. Go Back To Main Menu");
        choice = input.nextLine();  
        if (choice.equals("1")){
            try (
                    PreparedStatement stmt2 = conn.prepareStatement(ordersquery);

                    ){  
                stmt2.setInt(1, userDetails.getUserId());
                ResultSet rsOrders = stmt2.executeQuery(ordersquery);   
                if (rsOrders != null){
                    while (rsOrders.next()){
                        Order orderDetails = new Order(rsOrders.getInt("orderId"), userDetails.getUserId(), rsOrders.getInt("totalItems"), rsOrders.getInt("totalPrice"));
                        System.out.println("-------------------------------------");
                        Order.print(orderDetails);
                    }
                }
            }catch (SQLException e){
                System.err.println(e);
            }
        }else if (choice.equals("2")){  
        }
    }

}

推荐答案

ResultSet rsOrders = stmt2.executeQuery(ordersquery);

stmt2 是你的 sql 查询那么你为什么要传递 ordersquery 将你的代码更改为下面的代码

stmt2 is you sql query then why are you passing ordersquery change your code to below code

ResultSet rsOrders = stmt2.executeQuery();

这篇关于您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册,以了解在“?"附近使用的正确语法.在第 1 行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How can create a producer using Spring Cloud Kafka Stream 3.1(如何使用Spring Cloud Kafka Stream 3.1创建制片人)
Insert a position in a linked list Java(在链接列表中插入位置Java)
Did I write this constructor properly?(我是否正确地编写了这个构造函数?)
Head value set to null but tail value still gets displayed(Head值设置为空,但仍显示Tail值)
printing nodes from a singly-linked list(打印单链接列表中的节点)
Control namespace prefixes in web services?(控制Web服务中的命名空间前缀?)