Java in 21 Days (6th Edition) Day 18: Accessing Databases with JDBC

The cover of Teach Yourself Java in 21 Days (6th Edition) by Rogers Cadenhead

Home Feedback Other Books Previous Day Next Day

Notes and Corrections

  • View the Certification Practice quiz solution
  • Certification answer: Answer (a) is correct. The compiler fails with the error message "non-static variable count cannot be referenced from a static context."

    Answer (b) is incorrect. You can use the new operator along with the constructor method of a class anywhere an object of that class would be expected.

    Answer (c) is incorrect. The [] that is used to declare an array can be placed after the variable name instead of the class or data type.

    Answer (d) is incorrect. Class variables can be declared anywhere outside of the methods of a class, not just at the top of the class definition.

  • Page 508: If you get an SQL connection error running the SysTableReporter application, click the Services tab in the Projects pane, right-click the item jdbc:derby://localhost:1527/sample [app on APP] and choose Connect, then run the application again.

Source Files

Activities