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();
}
3 comentarios:
te voy a coger el fuente, si no te importa. gracias por la aportacion :)
Me ha venido increíblemente bien, ¡gracias!
gracias!!
Publicar un comentario