Reputation: 3362
Pentaho Driver Class could not be found, make sure the Generic Database Driver (Jar File) is installed
Where can I get a generic database driver? Nothing comes up when I do a Google search.
This wasn't very helpful. Anyone have any advice?
Upvotes: 0
Views: 1074
Reputation: 4544
There is no such thing as a generic jdbc driver.
The difference between generic jdbc connection and others is the following:
So, to set up a generic connection (for sake of argument, let’s say postgres), you need the full postgres jdbc url, the driver class name and credentials. If you need to switch to a different type of database (say Oracle) you can use variables for the driver class name and url. But the driver is still a specific one.
When should you use a generic connection?
But if you want to connect to MySQL 8 using a generic connection you still need a MySQL 8 JDBC driver.
Upvotes: 2