So I have the following code:
@ServiceProvider(service=org.test.Driver.class)
public class TestLDriver implements SQLDriver{
and the JDBC layout is:

Two problems occured, one is.. am I doing the right thing?
The second is that I get an error that this class is not assignable to org.netezza.Driver.class. What am I doing wrong?
When I try to use the
Class.register(Driver.class) it gives me a cannot find symbol error…
You should load the Driver class like this:
There is no Class.register.