>Then it states that in the root of my project I can make an extra folder,
I guess that your teacher wish you to create a directory manually. Of couse you can use java.io.File.mkdir method also.
>I ran into the "No suitable driver found" error message
You should use
try{
Class.forName("org.postgresql.Driver").newInstance();
}catch(Exception e){
System.err.println(e);
}
in public Login()
>I'm making use of Type-1 Driver.
You cann't use sun jdbc-odbc bridge driver to connect MS Access database remotely.
>Should the Type-4 Driver support the remote connectivity?
HXTT Access(http://www.hxtt.com/access.html), a commercial type 4 driver for MS Access, supports it.