Boa tarde pessoal
Estou desenvolvendo uma aplicação web, porem estou com dificuldades em me conectar no banco hsqldb em modo standalone
código de conexao:
public Connection getConnection(){
System.out.println("Conectando");
try{
return DriverManager.getConnection("jdbc:hsqldb:file:localhost/baseFuncionarios/", "SA", "");
}catch(SQLException e){
throw new RuntimeException(e);
}
}
erro: user lacks privilege or object not found: FUNCIONARIOS
alguem ja posso por isso?