Package org.databene.commons.xml

Examples of org.databene.commons.xml.SimpleXMLWriter


  private static final Logger LOGGER = LoggerFactory.getLogger(DBSanityCheckCreator.class);

  public int createDBSanityChecksFor(SchemaChange schemaChange, File checksFile) {
    try {
      OutputStream out = new BufferedOutputStream(new FileOutputStream(checksFile));
      SimpleXMLWriter writer = new SimpleXMLWriter(out, Encodings.UTF_8, true);
      writer.startDocument();
      writer.startElement("dbsanity");
      int checkCount = process(schemaChange, writer);
      writer.endElement("dbsanity");
      writer.endDocument();
      writer.close();
      return checkCount;
    } catch (Exception e) {
      throw new RuntimeException(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.databene.commons.xml.SimpleXMLWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.