java - com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException 未知列

标签 java mysql jdbc java.util.scanner

我目前正在尝试扫描并解析非sql格式的文件。我试图将所有数据输入到 SQL 表中,但由于某种原因,每次运行程序时,我都会收到错误消息,提示“字段列表”中存在未知列“内容”。所以这两个数据都没有通过。 “什么”是文本上的名称之一。该表当前有 11 列。我知道我解析或扫描错误,但我不知道在哪里。这是我的代码:

public class parseTable {

public parseTable (String name) throws FileNotFoundException
{
    File file = new File(name);
    parse(file);
}

private void parse(File file) throws FileNotFoundException
{
    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;

    try{
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    String connectionUrl = "jdbc:mysql://localhost:3306/";
    String connectionUser = "";
    String connectionPassword = "";
    conn = DriverManager.getConnection(connectionUrl, connectionUser, connectionPassword);
    stmt = conn.createStatement();

    Scanner scan = new Scanner(file);

    String[] rowInfo = new String[11];
    int count = 0;
    while(scan.hasNextLine()){

        //String data = scan.nextLine();

        Scanner lineScan = new Scanner(scan.nextLine());

        while(lineScan.hasNext()){
            String words = lineScan.next();
            if(count < 11){
                rowInfo[count] = words;
                count++;
            }


            else if(count == 11 && words.equals("States")){
                rowInfo[count - 1] = rowInfo[count - 1] + " " + words;
            }

            else{
                String query = "";
                for(int i = 0; i < rowInfo.length; i++)
                {
                    if(query.equals(""))
                    {
                        query = rowInfo[i];
                    }
                    else if(i == 9){
                        query = query + "," + rowInfo[i];
                    }

                    else if(rowInfo[i].equals(null)){
                        query = query + ", " + "NULL";
                    }

                    else
                        query = query + ", " +  "'" + rowInfo[i] + "'";

                }

                stmt.executeUpdate("INSERT INTO dup VALUES(" + query + ")");

                count = 0;
                rowInfo = new String[11];
            }
        }



    }

    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try { if (rs != null) rs.close(); } catch (SQLException e) { e.printStackTrace(); }
        try { if (stmt != null) stmt.close(); } catch (SQLException e) { e.printStackTrace(); }
        try { if (conn != null) conn.close(); } catch (SQLException e) { e.printStackTrace(); }
    }
}

}

这是我尝试输入的数据: 1 hello Cheese 1111 What@yahoo.com 用户 adm street zip 美国 2 Alex Cheese 1111 What@yahoo.com 用户 adm street zip 美国

这是我现在使用PrepareStatement 的新代码。但是我仍然收到错误,我在网上查找了我犯错误的地方的解决方案,但我似乎无法弄清楚在哪里。

   String query = "INSERT INTO mil_table (UserName, NameFirst, NameLast, supportID, EmailAddress, Password,
               IDQ, AddressCity, AddressState, AddressZip, AddressCountry) VALUES(?,?,?,?,?,?,?,?,?,?,?)";

    pstmt = conn.prepareStatement(query);

    Scanner scan = new Scanner(file);

    String[] rowInfo = new String[11];
    int count = 0;
    while(scan.hasNextLine()){

        //String data = scan.nextLine();

        Scanner lineScan = new Scanner(scan.nextLine());

        while(lineScan.hasNext()){
            String words = lineScan.next();
            if(count < 11){
                rowInfo[count] = words;
                count++;
            }


            else if(count == 11 && words.equals("States")){
                rowInfo[count - 1] = rowInfo[count - 1] + " " + words;
            }

            else{

                for(int i = 0; i <rowInfo.length; i++)
                {
                    pstmt.setString(i + 1, rowInfo[i]);

}

                //stmt.executeUpdate("INSERT INTO mil_table VALUES(" + query + ")");
                //System.out.println("@" + query + "@");
                pstmt.executeUpdate();
                count = 0;
                rowInfo = new String[11];
            }
        }

最佳答案

当您使用 MySQL 时,您需要将文本输入用引号引起来。尝试将要插入的字符串值括在引号中,然后执行代码。

关于java - com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException 未知列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27113689/

相关文章:

java.lang.IllegalAccessError : class javax. xml.parsers.SecuritySupport12 无法访问其父类(super class) javax.xml.parsers.SecuritySupport

java - 如何检查 jdbc 连接和 dbbool 连接是否达到最大值?

c# - 从 PHP 开发人员的角度来看,MySQL 与 C#

mysql - 尝试在 Mac 上使用 MySQL 创建新数据库时出错

mysql - laravel 播种返回 undefined index

java - 如何解决MySQL jdbc套接字关闭SocketException?

java - 参数化内连接

java - Jersey maven-wadl-plugin 无法解析 HttpServletRequest

带有收件人、抄送和密件抄送的 Java 邮件

java - (Azure SDK java)如何使用Java程序启用/禁用每个功能