Search:

Type: Posts; User: javastudnt

Search: Search took 0.10 seconds.

  1. Re: Multiple nullpointerexceptions in my code.

    Thanks for the insight!
    Let me go back and reevaluate with a fresh point of view and see what I can do.
  2. Re: Multiple nullpointerexceptions in my code.

    1 package student;
    2
    3 import java.sql.Connection;
    4 import java.sql.DriverManager;
    5
    6 public abstract class Student {
    7 protected String firstName;
    8 protected String lastName;
    9 protected...
  3. Multiple nullpointerexceptions in my code.

    I thought I had this working but I'm getting nullpointerexceptions now on lines 21,31, & 80. I think I've been looking at it for too long.
    Can someone help me out?



    1 package student;
    2
    3...
Results 1 to 3 of 3