IOException
479480481482483484485486
writer.append("" + (size() - maxRecords)); writer.append(" record(s) truncated..."); } } catch (java.io.IOException e) { throw new IOException("Exception while writing TEXT", e); } }
556557558559560561562563
writer.append("</tbody>"); writer.append("</table>"); } catch (java.io.IOException e) { throw new IOException("Exception while writing HTML", e); } }
633634635636637638639640
writer.append("\n"); } } catch (java.io.IOException e) { throw new IOException("Exception while writing CSV", e); } }
726727728729730731732733
map.put("records", r); writer.append(JSONObject.toJSONString(map)); } catch (java.io.IOException e) { throw new IOException("Exception while writing JSON", e); } }
787788789790791792793794
writer.append("</records>"); writer.append("</result>"); } catch (java.io.IOException e) { throw new IOException("Exception while writing XML", e); } }
839840841842843844845846
writer.append(ctx.renderInlined(insertInto(table, f).values(record.intoArray()))); writer.append(";\n"); } } catch (java.io.IOException e) { throw new IOException("Exception while writing INSERTs", e); } }