Unable to load driver download page.

I was called by my dad who needed some assistance to get a printer installed he bought fresh from a second hand store.
Anyway, I tried getting to the HP download page. The page however remains blank and does not load. I found some similar threads that availability to the driver pages is sometimes inaccesible. I don't want to get ahead of things (like assuming it's the fault of HP), and I also don't want to be a jerk (I love HP seriously)
But I have had very frequent issues in the past with multiple machines on different networks while accessing HP webpages. Either because of extreme long loading times through any hp web service. And in this case unable to access pages completely. Just a reminder that it might be a area of business to improve upon albeit a minor focus point for the people that run this company.
I read similar threads on this board through google searches that the same webpage (driver) page could be accesible through different international domains. I tried the german and spanish ones with the same results.
I tried accessing the driver download page for over 4 hours now.
Maybe it's just a issue with the driver page of my printer type. Especially since it is a older model.
Personally I don't know about safe alternative download methods to get the drivers.
Please post-
1:If you consider the fault to be at my end and how to fix it.
2:If there is any other way to get my hands on the printer software.

Hi:
The problem is on HP's end.
The link is now working.
http://support.hp.com/us-en/product/HP-Deskjet-D2400-Printer-series/2510721/model/2510766/drivers
Yes, I agree with you that there have been too many times in the last year that the support pages are down.
There should be a performance metric that is part of whoever's job it is that is in charge of the webpages (webmaster?), and there should be measurements of accessibility which should be part of the person's performance evaluations.
For example overall: Webpages never go out more than 1% of the time each year, etc.
I have found it quite unacceptible lately, and if this person worked for me, they would be on the carpet.
I was the commanding officer of a USCG LORAN station back in the 1980's
The mission of the station was to provide a radio navigation signal 100% of the time. 
Anything short of that, and you better have a darn good reason why the station went off air.
You go off air too many times, how do ships and planes find their position?
I can tell you this, if my station had gone off air as many times as these web pages have been down lately, I would have been relieved of command.
Plain and simple.

Similar Messages

  • Unable to load Driver Class

    Hi There:
    When I try to connect to the Oracle 8i via this applet , I get the following run time error.
    Any help will be appreciated.
    I am using j2sdkee1.3.1, jdk1.3.1_02 and Oracle8.
    I also need your suggestion please. I have inserted some BLOB data in the Oracle table. I will need to display the BLOB data to the end users. I plan to convert this BLOB data into string format so that my applet can display the same. Further the string will have to be edited by the end users. I will then convert this modified string back to byte array so that I can insert the same as BLOB.
    Please let me know applet or the servlet? Which is better option.
    Users are reluctant to use any kind of WebServer because it will introduce the additional layer of complexity.
    Any help will be greatly appreciated.
    Thanks in advance.
    C:\>AppletViewer JdbcApplet.html
    Unable to load Driver Class
    java.lang.ClassNotFoundException: java.io.FileNotFoundException: C:\oracle\jdbc\
    driver\OracleDriver.class (The system cannot find the path specified)
    The following code snippet fails because it is unable to find the suitable driver.
    if (conn == null)
         //make a connection to the db
         try {     
              // conn = DriverManager.getConnection ("jdbc:oracle:thin:@"+"localhost:1521:sys", "system", "manager");
              // conn = DriverManager.getConnection ("jdbc:oracle:thin:system/manager@(description=(address_list= (address=(pro tocol=tcp)(host=localhost)(port=1521)))(source_route=yes)(connect_data=(sid=sys)))" );
              Class.forName("oracle.jdbc.driver.OracleDriver");
              String conurl="jdbc:oracle:thin:@localhost:1521:sys";
              Connection con=DriverManager.getConnection(conurl,"system","manager");
         } catch ( Exception e ) {
              System.out.println ("Unable to load Driver Class");
              e.printStackTrace (System.out);
              // add send email notification about this fact
              return false;
    } // End of if Statement from conn...

    Hi,
    maybe I'm too late but try the following :
    It seems that Your IDE doesn't check the path to Your classesxxx.zip file.
    Or Your classesxxx.zip file is corrupt.
    We had this error after downloading the classes12.zip for Oracle versions
    higher 8.1.6.
    The original size of this file is 1.888kB.
    Remember Windows FTP is downloading in ascii mode per default.
    Or Your classpath isn't correct
    ( the Exception souns like this )
    Regards

  • Exception in thread "main" related to CLASSPATH and unable to load driver??

    Hi,
    I am a JAVA beginner, I have met some problems cannot solve, can somebody help?
    My OS is Windows2000
    Java SDK in C:\j2sdk-1_4_2_04 and Java JRE in C:\Program Files\Java\j2re1.4.2_04 [Installation: j2sdk-1_4_2_04-windows-i586-p.exe]
    MySQL in C:\mysql [Installation: mysql-4.0.18-win.zip]
    MyODBC in C:\Download\MYODBC [Installation: MyODBC-3.51.06.exe]
    MyJDBC in C:\mysql-connector-java-3.0.11-stable [Installation: mysql-connector-java-3.0.11-stable.zip]
    Enviornment Variables Settings
    PATH = C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\j2sdk1.4.2_04\bin;C:\mysql\bin
    JAVA_HOME = C:\j2sdk1.4.2_04
    (CASE ONE) - While I didn't set a new Enviornment Variable for CLASSPATH
    HelloWorld.class can work properly and LoadDriver.class cannot work due to Unable to load Driver (As below)
    C:\JavaTry>javac HelloWorld.java
    C:\JavaTry>java HelloWorld
    Hello World!
    C:\JavaTry>javac LoadDriver.java
    C:\JavaTry>java LoadDriver
    Unable to load driver.
    java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at LoadDriver.main(LoadDriver.java:7)
    (CASE TWO) - While I set a new Enviornment Variable for CLASSPATH (No matter which settings as below)
    CLASSPATH = C:\mysql-connector-java-3.0.11-stable\mysql-connector-java-3.0.11-stable-bin.jar
    CLASSPATH = C:\mysql-connector-java-3.0.11-stable
    CLASSPATH = C:\mysql-connector-java-3.0.11-stable\com;C:\mysql-connector-java-3.0.11-stable\org
    Both the HelloWorld.class and LoadDriver cannot work properly due to Exception in thread "main" java.lang.NoClassDefFoundError (As below)
    C:\JavaTry>javac HelloWorld.java
    C:\JavaTry>java HelloWorld
    Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld
    C:\JavaTry>javac LoadDriver.java
    C:\JavaTry>java LoadDriver
    Exception in thread "main" java.lang.NoClassDefFoundError: LoadDriver
    Below are the JAVA scripts which I used
    -> HelloWorld.java
    public class HelloWorld {
    public static void main(String[] args) {
    System.out.println("Hello World!");
    -> LoadDriver.java
    import java.sql.*;
    public class LoadDriver {
    public static void main(String[] Args) {
    try {
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    /* Class.forName("com.mysql.jdbc.Driver").newInstance(); <- either one try the same */
    } catch (Exception E) {
    System.err.println("Unable to load driver.");
    E.printStackTrace();
    Moreover, I saw some information only standalone application need to set CLASSPATH, right??

    My problem "unable to load driver" have solved.
    I set the CLASSPATH = C:\mysql-connector-java-3.0.11-stable\mysql-connector-java-3.0.11-stable-bin.jar
    and try
    java -cp ".";%CLASSPATH% LoadDriver
    Thanks masnare again :> and who provided the link http://www.kevinboone.com/classpath.html in the forums others similar topics, actually I forgot which topic and who, so... :P no matter whom thanks very much :)

  • Help Please ....  Unable to load Driver Class

    Hi There:
    When I try to connect to the Oracle 8i via this applet , I get the following run time error.
    Any help will be appreciated.
    I am using j2sdkee1.3.1, jdk1.3.1_02 and Oracle8.
    I also need your suggestion please. I have inserted some BLOB data in the Oracle table. I will need to display the BLOB data to the end users. I plan to convert this BLOB data into string format so that my applet can display the same. Further the string will have to be edited by the end users. I will then convert this modified string back to byte array so that I can insert the same as BLOB.
    Please let me know applet or the servlet? Which is better option.
    Users are reluctant to use any kind of WebServer because it will introduce the additional layer of complexity.
    Any help will be greatly appreciated.
    Thanks in advance.
    C:\>AppletViewer JdbcApplet.html
    Unable to load Driver Class
    java.lang.ClassNotFoundException: java.io.FileNotFoundException: C:\oracle\jdbc\
    driver\OracleDriver.class (The system cannot find the path specified)
    The following code snippet fails because it is unable to find the suitable driver.
    if (conn == null)
         //make a connection to the db
         try {     
              // conn = DriverManager.getConnection ("jdbc:oracle:thin:@"+"localhost:1521:sys", "system", "manager");
              // conn = DriverManager.getConnection ("jdbc:oracle:thin:system/manager@(description=(address_list= (address=(pro tocol=tcp)(host=localhost)(port=1521)))(source_route=yes)(connect_data=(sid=sys)))" );
              Class.forName("oracle.jdbc.driver.OracleDriver");
              String conurl="jdbc:oracle:thin:@localhost:1521:sys";
              Connection con=DriverManager.getConnection(conurl,"system","manager");
         } catch ( Exception e ) {
              System.out.println ("Unable to load Driver Class");
              e.printStackTrace (System.out);
              // add send email notification about this fact
              return false;
    } // End of if Statement from conn...

    Hi,
    maybe I'm too late but try the following :
    It seems that Your IDE doesn't check the path to Your classesxxx.zip file.
    Or Your classesxxx.zip file is corrupt.
    We had this error after downloading the classes12.zip for Oracle versions
    higher 8.1.6.
    The original size of this file is 1.888kB.
    Remember Windows FTP is downloading in ascii mode per default.
    Or Your classpath isn't correct
    ( the Exception souns like this )
    Regards

  • Can not locate driver download page.

    Can not locate driver download page.
    Officejet Pro 8500 A909a
    MS Vista Ultimate 64 Bit.
    When using my Linux PC to try and locate drivers for another PC, the website just keeps sending me in circles and never displays the drivers to download.  Seems like in the past this has been a problem too.  This occures with latest version of Firefox-37.0.1 and the current version of Chromium-37.0.2062.120 Built on Debian 7.6, running on Debian 7.8 (281580) (64-bit).
    Navigate to hp.com
    Select: Support | Download Drivers
    Under 'Drivers and Downloads' tab
    - enter product id: officejet pro 8500 A909a
    - Select 'Go'
     Expand the '+' that lists one link and select it.
    None of the following links give a driver download!
    - Troubleshooting
    - How To
    - Product Info.
    - Users Guide
    - Video Tutorials
    - More Options
    Maybe one of the options should be 'Driver Downloads'.
    Just my $.02.
    This question was solved.
    View Solution.

    Hi,
    Many links in there. Please use the following direct driver (for Windows all):
       http://ftp.hp.com/pub/softlib/software12/COL31041/mp-110033-2/OJ_AIO_P8500_A909_Full_Win_WW_140_408-...
    (Note: Many printers for the whole 8500 series use same drivers).
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    OS is Windows7. I'm using the latest version of Mozilla Firefox
    I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • Driver download pages not working

    Hello, 
     I am unable to acces the support pages to download the drivers for my printer, I have seen others get them by different links provided by the staff here and would appreciate the same.  
    Thanks for your time

    BTW, pages that are not working include:
    =============================================
    http://support.hp.com/us-en/product/HP-Omni-120-De​sktop-PC-series/5186992
    http://support.hp.com/us-en/product/HP-Omni-120-De​sktop-PC-series/5186992/model/5193446/
    http://support.hp.com/us-en/product/HP-Omni-120-De​sktop-PC-series/5186992/model/5193446/drivers
    http://support.hp.com/us-en/product/HP-Omni-120-De​sktop-PC-series/5186992/model/5193446/troubleshoot​...
    http://support.hp.com/us-en/product/HP-Omni-120-11​00-Desktop-PC-series/5186992?sp4ts.oid=5192838

  • 1) "Care Pack" product registration page error 2) Driver download page error - links don't work

    I cannot register my printer because the page has "Care Pack" product registration page has errors:
    https://register.hp.com/americas/flowPage/registration/index.do?execution=e1s1
    I fill in all the information and click the blue "Submit Query" button, and nothing happens except 3 silver "Submit Query" buttons appear below where it says, "Search results" "Select the product that you want to register." But there are no results! And why 3 buttons if no results?
    Cookies and scripts are enabled. I did that and refreshed the page before I entered anything, so nothing is getting rejected.
    It seems the website has a lot of problems...the download links on the driver page wouldn't work either, so I had to get them from a 3rd party. I am lucky to find a reliable site! (The driver was official and the printer finally installed correctly, which it couldn't even find if I let Windows search online!)

    Hi @Terry-S 
    I feel it would be best for you to call us. We can help you with the CarePack registration. If you are in Canada or US call 800 474 6836, or you can Contact HP Worldwide.
    Also, sorry to hear that you had some difficulties with the software download page. We appreciate your feedback.
    Thank you.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Unable to navigate to Download page

    I am trying to download Oracle 9i personal edition and 9i forms/reports but I could not go to any of the download pages. The browser is hanging. Previously I downloaded many tools but I beleive there is some problem in Download Server/Database.
    Can anyone Help
    Thanks in Advance,
    Arun.

    You're very welcome.
    I can give you the ethernet driver...
    Use this one...
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-102459-1&cc=us&dlc=en&lc=en...
    If you post the hardware ID for the Network Controller, I can give you the link to the wireless card.
    Probably the only thing I can't get for you would be the graphics driver which is custom for your model and has to be gotten from that support page.
    Here is how to find the hardware ID for the network controller (wireless card), and you can do that for any other device you need.
    Find the network controller device, click on that and then click on the Details tab.
    Now you see a Property drop down list and it is defaulted to Device Description.
    Drop down on that list and select the second item (Hardware ID's).
    Post the top string of characters you see in the window.

  • Re:oracle enterprise manager unable to load  DB console page

    Hi please help me I have created database using dbca and oem was configured but am unable to load db console and the listner is down .

    Start the database listener and try to re-access the dbconsole

  • Applet, Connector/J, unable to load driver

    I have written an Applet that is using the Connector/J com.mysql.jdbc.Driver to connect. When I compile and run the Applet with VisualCaf� and the AppletViewer, it is able to load the driver, access the database, exectue queries, etc. The problem occurs when I upload my files to the webspace.
    My Applet loads, but when it tries to load the driver, these are the exceptions that I catch:
    "Error loading class: com.mysql.jdbc.Driver
    java.lang.NoClassDefFoundError
    Failed to initialize driver: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver"
    Here is the code having the problem:
    import java.sql.*;
    public DatabaseConnection()
    // First, we initialize the driver.
    try
    //System.out.println("Initializing Driver...");
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    //Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    //System.out.println("Driver initialized.");
    catch (Exception e)
    System.out.println("Failed to initialize driver: " + e);
    On my webspace, I have included the mysql-connector-java-3.0.8-stable-bin.jar file in the same directory as my main class file. In the HTML code, I use the ARCHIVE tag and give it that .jar file. I have even un-jarred the file, retaining the original directory structure and placed those in the same directory. The .jar file seems to download when I go to the page and load the Applet.
    Is there something I'm missing that lets the Applet load the Driver? The Driver i'm using is a Type 4 Driver, which should be useable by an Applet.
    Any help would be very much appreciated - I've struggled with this for a long time, now.

    For anyone else out there using the Connector/J driver to make an Applet connect to a mySQL database, read on.
    The mysql-connector-java-3.0.8-stable-bin.jar does not work with Applets. At least, it would not work for me after trying many different things. So, I downloaded an earlier version: mysql-connector-java-2.0.14-bin.jar and everything worked fine (!!!).
    I hope this helps someone else with the same problem!! If the number of forums with very similar postings that i've run across is any indication, there are a lot of people having this problem!

  • "Unable to open" WhatsApp download page, or download Appworld

    Hello,
    I have a Blackberry Z10 device.
    My problems began earlier today when WhatsApp prompted me update it because the application is too old. When I pressed the "Update WhatsApp" link within WhatsApp, strangely nothing happened (it has always worked previously). So I thought I would instead download WhatsApp from the WhatsApp website, http://whatsapp.com/download . To my surprise, when I entered this URL in the browser it said "Unable to open appworld://content/2360?" I then realized that maybe my Blackberry Appworld has been accidentally deleted at some point because I can't find it on my phone.
    So my next step was to reboot the phone and then try to download Appworld again from this link: www.blackberry.com/appworld/download
    The page opened and told me "Visit www.blackberry.com/appworld/download from your smartphone to download." Of course, I already had this very page open on my phone, so that was a dead end. I went for the second option, to enter my email address integrated with my Blackberry smartphone and have a download link sent to me.
    The link that arrived in my inbox was: http://mobileapps.blackberry.com/devicesoftware/en​try.do?code=appworld
    When I pressed this link from my smartphone, I was taken to a page that said, "Downloads via a USB connection are not enabled for this product. Please visit our mobile download site using the browser on your Blackberry." But I WAS on the mobile download site using the browser on my Blackberry. Nevertheless, even when I pressed the link to this mobile download site it brought me back to the same page about the USB connection. My phone was not plugged in with a USB cable at the time.
    So I'm now at a loss as to how to proceed with re-installing Appworld and, subsequently, WhatsApp. Assistance is appreciated!

    Hello,
    I have a Blackberry Z10 device.
    My problems began earlier today when WhatsApp prompted me update it because the application is too old. When I pressed the "Update WhatsApp" link within WhatsApp, strangely nothing happened (it has always worked previously). So I thought I would instead download WhatsApp from the WhatsApp website, http://whatsapp.com/download . To my surprise, when I entered this URL in the browser it said "Unable to open appworld://content/2360?" I then realized that maybe my Blackberry Appworld has been accidentally deleted at some point because I can't find it on my phone.
    So my next step was to reboot the phone and then try to download Appworld again from this link: www.blackberry.com/appworld/download
    The page opened and told me "Visit www.blackberry.com/appworld/download from your smartphone to download." Of course, I already had this very page open on my phone, so that was a dead end. I went for the second option, to enter my email address integrated with my Blackberry smartphone and have a download link sent to me.
    The link that arrived in my inbox was: http://mobileapps.blackberry.com/devicesoftware/en​try.do?code=appworld
    When I pressed this link from my smartphone, I was taken to a page that said, "Downloads via a USB connection are not enabled for this product. Please visit our mobile download site using the browser on your Blackberry." But I WAS on the mobile download site using the browser on my Blackberry. Nevertheless, even when I pressed the link to this mobile download site it brought me back to the same page about the USB connection. My phone was not plugged in with a USB cable at the time.
    So I'm now at a loss as to how to proceed with re-installing Appworld and, subsequently, WhatsApp. Assistance is appreciated!

  • Unable to load driver for Storage for Windows 2008 UCS B230 M2

    I am trying to Boot from SAN windows 2008 R2. I  have configured and connected the Cisco UCS Chassis and FI to our Network & Storage .I am  having problem to install Windows 2008 R2 Server on Blades as it is not able to see Storage LUN while installation .I downloaded drivers from Cisco Support Site.
    I tried drivers from ISO ucs-bxxx-drivers.2.1.3 latest version but Windows is showing driver is available but not installing the driver I am getting the following error and not showing the LUN hard disk to select the installation.
    Windows is unabe to locate storage LUN. I am able to LUN while booting process.
    I am not sure where I am doing wrong.or I am chosing wrong driver.

    I don't see the error message either, but to install W2008 on a boot lun, you must
    1) do the zoning of the vhba (initiator) to the pwwn of the storage subsystem port (target)
    2) the lun masking / mapping has to be setup
    3) fnic driver has to be installed
    Therefore, if you don't see your boot lun, either 1) and or 2) has to be fixed
    then
    4) only one path should be configured (e.g. fabric a), because no multipathing is available during installation, this is very important, and necessary for W2003, 2008 and 2012
    and
    5) if you see the boot lun, and can install, but the boot fails, the problem is the boot policy !
    Very easy ! Good luck !

  • Unable to load certain web pages unless cache is empty

    I continue to have the problem that certain web sites (eg Dodgers.com) will not load completely unless I have just emptied the Safari cache. Similar problems with weatherunderground.com. These are content-rich pages, so they load in "outline" form, or with lots of little boxes with question marks. If I immediately go and empty the cache, then reload the page, it comes back perfectly. This doesn't happen with my laptop on the same home network, and I have all of the Safari preferences set the same. Most other web pages load just fine.
    Previous posts of this same question were not helpful.

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • Unable to load driver

    hi,
    when am trying to run this program am getting message
    "Cannot connect to database server"
    Someone could ya resolve the problem and tell me?
    import java.sql.*;
    public class Connect
    public static void main (String[] args)
    Connection conn = null;
    try
    String userName = "root";
    String password = "";
    String url = "jdbc:mysql://localhost/test";
    Class.forName ("com.mysql.jdbc.Driver").newInstance ();
    conn = DriverManager.getConnection (url, userName, password);
    System.out.println ("Database connection established");
    catch (Exception e)
    System.err.println ("Cannot connect to database server");
    finally
    if (conn != null)
    try
    conn.close ();
    System.out.println ("Database connection terminated");
    catch (Exception e) { /* ignore close errors */ }
    }

    reposted with tags:
    import java.sql.*;
       public class Connect
           public static void main (String[] args)
               Connection conn = null;
               try
                   String userName = "root";
                   String password = "";
                   String url = "jdbc:mysql://localhost/test";
                   Class.forName ("com.mysql.jdbc.Driver").newInstance ();
                   conn = DriverManager.getConnection (url, userName, password);
                   System.out.println ("Database connection established");
               catch (Exception e)
                   // System.err.println ("Cannot connect to database server");
                   e.printStackTrace(); // **** this may be better ***
               finally
                   if (conn != null)
                       try
                           conn.close ();
                           System.out.println ("Database connection terminated");
                       catch (Exception e) { /* ignore close errors */ }
       }You may want to change your catch block to print the stack trace for more information. I'm not a database guru, so that's the best suggestion I can make, that and to use code tags to improve readability of your code here.

Maybe you are looking for