private String CLOBToString(CLOB cl) throws IOException, SQLException
{
if (cl == null)
return "";
StringBuffer strOut = new StringBuffer();
String aux;
BufferedReader br = new BufferedReader(cl.
while ((aux=br.readLine()) != null)
{
strOut.append(aux);
}
return strOut.toString();
}