when I create h2 memory database with a "name", I can't seem to use the name to refer to the table and keep getting "schema not found". Any idea?
val con = DriverManager.getConnection("jdbc:h2:mem:mytest;MODE=MYSQL;DATABASE_TO_UPPER=false;DB_CLOSE_DELAY=-1")
val stm = con.createStatement
val sql: String =
"""
|create table mytest.test_table1(ID INT PRIMARY KEY,NAME VARCHAR(500));
|insert into mytest.test_table1 values (1,'A');""".stripMargin
stm.execute(sql).result
```
Exception in thread "main" org.h2.jdbc.JdbcSQLSyntaxErrorException: Schema "mytest" not found; SQL statement:
create table mytest.test_table1(ID INT PRIMARY KEY,NAME VARCHAR(500));
insert into mytest.test_table1 values (1,'A'); [90079-199]