import native java.sql.DriverManager;
How do I call DriverManager.getConnection?
Chris.
--
http://www.bluishcoder.co.nz
Found the answer. Append Class to the name of the class. This worked:
import native java.sql.DriverManager;
DriverManagerClass.getConnection(...);
Chris.
--
http://www.bluishcoder.co.nz
- Tiark