2

我正在 netbeans/windows 7 上使用 java 开发应用程序。我试图使用 SQL 使用 PreparedStatement 将数据插入数据库。所以这是我的代码;

private void addInfoActionPerformed(java.awt.event.ActionEvent evt) {                                        
    Connection conn;    
    PreparedStatement pst;
    String url = "jdbc:derby://localhost:1527/records";
    String SQL_INSERT = "INSERT INTO records"+
                "VALUES(?,?,?)";
    String name, surname, number;
    try {
        conn = DriverManager.getConnection(url, "system", "app");
        System.out.println("connected to db");
        pst = conn.prepareStatement(SQL_INSERT);
        name = nameField.getText();
        surname = surnameField.getText();
        number = numberField.getText();
        System.out.println("got data from textfields");
        pst.setString(1, name);
        pst.setString(2, surname);
        pst.setString(3, number);
        System.out.println("variables set");
        pst.executeUpdate();
        System.out.println("sql command executed");
        pst.close();
        conn.close();
    } catch (SQLException ex) {
        Logger.getLogger(addition.class.getName()).log(Level.SEVERE, null, ex);
    }

}  

但是我遇到了这样的错误;

java.sql.SQLSyntaxErrorException:语法错误:遇到“?” 第 1 行第 27 列。

我的表的名称是记录,它有三个命名的列;姓名、姓氏和号码。正如我从 println 行中可以理解的那样,该行存在问题;

pst = conn.prepareStatement(SQL_INSERT);

或者我创建了错误的 SQL_INSERT 字符串和 SQL 代码。我无法弄清楚到底是什么问题。

4

1 回答 1

8

你错过了一个空间

String SQL_INSERT = "INSERT INTO records"+
            "VALUES(?,?,?)";

当你进行连接时,它会产生"INSERT INTO recordsVALUES(?,?,?)"

将其更改为

String SQL_INSERT = "INSERT INTO records"+
            " VALUES(?,?,?)";
于 2013-06-11T13:16:53.570 回答