Last week, we had the author of TDD for a Shopping Website LiveProject. Friday at 11am Ranch time, Steven Solomon will be hosting a live TDD session just for us. See for the agenda and registration link
When I am trying to run this code from console I getting an error like "Exception Thread main java.lang.NoClassDefFoundError: oracle/jdbc/driver/oracledriver " can any one help me ?I have already provided URL ,username and password in stdDAO object .
In order to create a JDBC connection to Oracle, which is what StudentDAO must be doing, you have to have the Oracle JDBC driver in your classpath. That's probably going to be in a file called ojdbc14.jar, ojdbc15.jar, or something like that. It depends on which versions of Oracle and Java you are using. The old, old Oracle JDBC driver was in classes12.zip, but I don't think anyone uses that anymore.