Tengo una tabla en MYSQL con una columna de tipo "tinytext" y no consigo pedir el dato desde el ResultSet una vez consultada. no se cual es el método getXXX() apropiado. Lo que tengo es algo asi:
Código HTML:
 
... if(resultSql.next()){
        String cod = resultSql.getString("codigoCurso");
        int uc = resultSql.getInt("ucredito");
        String lapso = resultSql.getString("periodo");
        String justi = resultSql.getString("justificacion");  ...
<table width="80%" align="center">
  <tr> 
    <td>
          CODIGO:<%= cod %><br><br>
          UNIDADES DE CREDITO:<%= uc %><br><br>
          LACADEMICO:<%= lapso %><br><br>
          JUSTIFICACION:<br><%= justi %>	
     </td>
   </tr>
</table>
...
Que método getXXX() de ResultSet debo usar para abtener el texto completo?
 
