Package de.chris_soft.nanoarchive

Examples of de.chris_soft.nanoarchive.DB.deleteDocument()


   * @throws ClassNotFoundException
   * @throws SQLException
   */
  public void testDeleteDocument() throws ClassNotFoundException, SQLException {
    DB db = new DB(DB_PATH);
    db.deleteDocument(333);
    List<Long> docs = db.getDocumentsFromPath(4711);
    Collections.sort(docs);
    assertEquals(docs.size(), 1);
    assertNotSame(docs.get(0).longValue(), 333);
    db.close();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.