It looks like you don't have the database drivers installed.
Please see post #4 of this thread...
Also, you should know that a NullPointerExce ption means that you are attempting to use an Object before you have instantiated it. You should make sure that every object you are using exists before you try to use it. You can do this by checking if the object is NULL. If an object is Null (not instantiated... by using the keyword new) and you try to call a method that is a member of that object, you will get a NullPointerExce ption.
See this article about the NullReferenceEx ception for more information.
-Frinny
Please see post #4 of this thread...
Also, you should know that a NullPointerExce ption means that you are attempting to use an Object before you have instantiated it. You should make sure that every object you are using exists before you try to use it. You can do this by checking if the object is NULL. If an object is Null (not instantiated... by using the keyword new) and you try to call a method that is a member of that object, you will get a NullPointerExce ption.
See this article about the NullReferenceEx ception for more information.
-Frinny
Comment