Re: Simple DB presence verifier.

From: "Darkangel Simpson" <darkangel_x66(at)hotmail(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Simple DB presence verifier.
Date: 2007-03-05 17:23:21
Message-ID: BAY115-F350672C54CD5532AFECF5D95840@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Damian C 2007-03-05 19:59:00 Re: Simple DB presence verifier.
Previous Message Abbas 2007-03-05 17:14:40 Re: Simple DB presence verifier.