SQL 语法错误:您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册
Posted
技术标签:
【中文标题】SQL 语法错误:您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册【英文标题】:SQL Syntax error : You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version 【发布时间】:2021-01-11 19:48:57 【问题描述】:我正在关注有关使用 mysql 数据库构建小 gui 以添加学生等的 YT 教程。 (全新)
我尝试查找我的和视频的任何错误,但似乎找不到问题。
我的代码:
Connection con1;
PreparedStatement insert;
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt)
// TODO add your handling code here:
String name = txtname.getText();
String cellNumber = txtmobile.getText();
String course = txtcourse.getText();
try
Class.forName("com.mysql.jdbc.Driver");
con1 = DriverManager.getConnection("jdbc:mysql://localhost/cput","root","");
insert = con1.prepareStatement("insert into record(name,cell number,course)values(?,?,?)");
insert.setString(1, name);
insert.setString(2, cellNumber);
insert.setString(3, course);
insert.executeUpdate();
JOptionPane.showMessageDialog(this, "Record added successfully!");
catch (ClassNotFoundException ex)
Logger.getLogger(registration.class.getName()).log(Level.SEVERE, null, ex);
catch (SQLException ex)
Logger.getLogger(registration.class.getName()).log(Level.SEVERE, null, ex);
我在一个名为 record 的表中设置了一个具有相同字段(姓名、单元格编号、课程)的数据库。当我尝试在 GUI 上添加记录时,我没有看到它出现在数据库中,而是出现此错误。
错误:
2021 年 11 月 11 日晚上 9:03:14 studentreg.registration jButton1ActionPerformed 严重:无 com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 你有一个 SQL 语法错误;检查与您对应的手册 MariaDB 服务器版本,用于在附近使用正确的语法 'number,course)values('John','123123123','Java')' 在第 1 行
如果有人能告诉我我哪里出错了,我将不胜感激。
【问题讨论】:
【参考方案1】:
cell number
与 java 无关 - 在 SQL 中,您不能在这样的标识符中放置空格。如果您的列确实被命名为空格和所有,请用双引号将标识符(表名、列名、视图名、索引名等)括起来,但请注意,这样做时,它会区分大小写;检查您的数据库表定义,您可能必须使用insert into record(name, "cell number", ...
或insert into record(name, "CELL NUMBER", ...)
。
【讨论】:
以上是关于SQL 语法错误:您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册的主要内容,如果未能解决你的问题,请参考以下文章
SQLSTATE[42000]:语法错误或访问冲突:1064 您的 SQL 语法有错误;检查与您的 MariaDB 对应的手册
错误:您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册以获取正确的语法使用
您的 SQL 语法有错误;检查与您的 MariaDB 服务器版本相对应的手册,以获取在 '0 附近使用的正确语法
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的 '' 附近使用正确的语法
#1064 - 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在 ')' 附近使用的正确语法