Connection at line 115 is null because you did only call methods to establish connection, but never actually assigned to the one that you declared on 30. You just call for it with
BankDBDriver.loadDriver();
BankDBDriver.makeConnection();
but that connections stays in your BankDBDrviver class. Give makeConnection() method return type of Connection and assign it to "con" so you can use it in this class