Ok, so I've got this program to do for a Java class which involves using JDBC stuff to connect to a local database running off Pointbase and allow for different operations on the database through a GUI.
I know exactly how I'm going to go about doing all the operations and stuff, but for the life of me I can't get the program to actually connect to the database. It keeps throwing a ClassNotFoundException at this line:
Class.forName(driver);
Where driver = "com.pointbase.jdbc.jdbcUniversalDriver"
Now, I know that that driver is valid, as I copy/pasted it from the GUI Pointbase thing that comes with J2EE, but for some reason my Java program is being fickle and not connecting correctly.
Any ideas?
I know exactly how I'm going to go about doing all the operations and stuff, but for the life of me I can't get the program to actually connect to the database. It keeps throwing a ClassNotFoundException at this line:
Class.forName(driver);
Where driver = "com.pointbase.jdbc.jdbcUniversalDriver"
Now, I know that that driver is valid, as I copy/pasted it from the GUI Pointbase thing that comes with J2EE, but for some reason my Java program is being fickle and not connecting correctly.
Any ideas?