Reputation: 177
I created a schema and few tables manually using the Eclipse database development perspective. But whenever I try to access the table from code, I get "Schema does not exist" error. However, if I create the tables within my program just before using them, all go well. Do I have to create the tables each time I connect to database? Since, I am testing my code, I have to restart the project multiple times.
Upvotes: 2
Views: 3214
Reputation: 16349
Three common reasons for "table does not exist" when you think you've already created the tables:
Upvotes: 5