查看 Libreoffice Base 查询 mysql
View Libreoffice Base queries to mysql
我正在尝试使用连接到 MariaDB 的 Libreoffice Base 的主键创建一个 table。
一个标准的 table,带有一个主要的、自动生成的(我认为是递增的)密钥。
但失败并显示此消息:
Error: 1064
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
' PRIMARY KEY ("ID"))' at line 1
有没有办法查看 LibereOffice 发送的查询?
在数据库中启用日志记录,table 使我能够看到错误的查询。
SET GLOBAL log_output = 'TABLE';
SET GLOBAL general_log = 'ON';
我正在尝试使用连接到 MariaDB 的 Libreoffice Base 的主键创建一个 table。 一个标准的 table,带有一个主要的、自动生成的(我认为是递增的)密钥。
但失败并显示此消息:
Error: 1064
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
' PRIMARY KEY ("ID"))' at line 1
有没有办法查看 LibereOffice 发送的查询?
在数据库中启用日志记录,table 使我能够看到错误的查询。
SET GLOBAL log_output = 'TABLE';
SET GLOBAL general_log = 'ON';