[All]
I deployed my application using the JDBC Drivers to connect to my store and every time I run the following message shows up: No Suitable Driver. What is wrong?
Obsah: I deployed my application using the JDBC Drivers to connect to my store and every time I run the following message shows up: No Suitable Driver. What is wrong?
�The Deployment Wizard has no way to detect when classes are being loaded dynamically
in an application. That's the case for the JDBC Drivers. An easy solution is to create
an instance of the Driver class that you are using in your application and let the
Wizard add it to the .jar/.zip file.
You can also add classes by hand while deploying the application/applet.
import com.borland.datastore.*;
LocalConnection� lc = new LocalConnection();
RemoteConnection rc = new RemoteConnection();
DataStoreDriver dsd = new DataStoreDriver();