我在H2数据库中的某些sql语句时出错了。
那些sql语句来自Hibernate SchemaExport
:
以下是sql语句:
create table CONTACTS (
person_id bigint not null,
contact_id bigint not null,
primary key (person_id, contact_id)
)
create table PERSON (
id bigint generated by default as identity,
FNAME varchar(55),
NAME varchar(55),
primary key (id)
)
alter table CONTACTS
add constraint UK_r5plahp7wqcsd47hscckyrxgd unique (contact_id)
alter table CONTACTS
add constraint FK_r5plahp7wqcsd47hscckyrxgd
foreign key (contact_id)
references PERSON
alter table CONTACTS
add constraint FK_90n1kse999lanaepr0v6hcgtv
foreign key (person_id)
references PERSON
例如,此行不会在H2中执行。
错误说明:[ERROR] Caused by org.h2.jdbc.JdbcSQLException: Syntax error in SQL statement : CREATE TABLE CONTACTS ( .... <<The same code from above>>
如何在H2中运行此SQL语句。
答案 0 :(得分:12)
我终于找到了我遇到语法错误的原因。
我实际上正在使用Hibernate运行SchemaExport/SchemaUpdate
并且我没有在SQL语句中指定分隔符。
要指定分隔符,请使用setDelimiter
方法。例如,
export.setDelimiter(";");
update.setDelimiter(";");
顺便说一句,要使用SQL语句识别H2中的语法错误,请在语句中找到*
,它将给出错误行。
答案 1 :(得分:-1)
DDL语句必须在一行上。