static void updateFlagc(String daysFlagc, Connection c) throws ClassNotFoundException, InstantiationException, IllegalAccessException, XMLException, SQLException {
System.out.println("[" + Shared.now() + "] Driver de conexiones " + Shared.lineNumber() + " updateFlagc ");
IXMLParser parser = XMLParserFactory.createDefaultXMLParser();
IXMLReader reader = StdXMLReader.stringReader(daysFlagc);
parser.setReader(reader);
IXMLElement xml = (IXMLElement) parser.parse();
PreparedStatement stmt = c.prepareStatement("update dia_operativo set compensado = 1 where concat(mid(fecha,1,4),mid(fecha,6,2),mid(fecha,9,2)) = ?");
for (Object x : xml.getChildren()) {