If I use annotation @Table("Book_Author")
then I get
org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "Book_Author" not found (candidates are: "BOOK_AUTHOR") ...
@Table("Book_Author")
public class BookAuthor {
private Integer author;
public BookAuthor(Integer authorId){
this.author =authorId;
}
}
schema.sql
:
create table Book_Author(
author int not null ,
book int not null ,
primary key (author,book)
);
Without @Table
everything works fine. Please tell me why?
The table name is unquated. It means that the table name is case insensitive in the database and it is converted to uppercase when you use
create table
SQL statement. But@Table
annotation is using a table name in a case sensitive manner.You should read more about quoted and unquated table names Make H2 treat quoted name and unquoted name as the same.