Re: Simple DB presence verifier. - Mailing list pgsql-novice

From Darkangel Simpson
Subject Re: Simple DB presence verifier.
Date
Msg-id BAY115-F350672C54CD5532AFECF5D95840@phx.gbl
Whole thread Raw
In response to Re: Simple DB presence verifier.  ("Abbas" <abbas@enterprisedb.com>)
List pgsql-novice
why dont you use class for connections and have something like this

bool isConnected {
try{
   if(Conneccion.State == System.Data.ConnectionState.Open){
    return true;
   }
  else{
     return false;
   }
  }
catch {
    MessageBox.Show("Error en IsConnected class_Coneccion");
    return false;
         }
}
after you conect this is a way to know if its connected or no with the npsql
driver, maybe the driver for java has something like "connection state"

Darkangel.

_________________________________________________________________
Mortgage rates as low as 4.625% - Refinance $150,000 loan for $579 a month.
Intro*Terms

https://www2.nextag.com/goto.jsp?product=100000035&url=%2fst.jsp&tm=y&search=mortgage_text_links_88_h27f6&disc=y&vers=743&s=4056&p=5117


pgsql-novice by date:

Previous
From: "Abbas"
Date:
Subject: Re: Simple DB presence verifier.
Next
From: "Damian C"
Date:
Subject: Re: Simple DB presence verifier.