Skip to main content

Diigo Home

Motivating the Data Storm, open source database browser for testing - The Diigo Meta page

datastorm.sourceforge.net/motivation.html - Cached - Annotated View

Benx Shen's personal annotations on this page

benxshen
Benxshen bookmarked on 2008-06-25 unit-test tool db

Data Storm is a free open source data base browser. While there are millions of data base browsers freely available online, Data Storm is different as it can be launched directly from within your Java code. This enables you to see and modify data that otherwise may not be available to you.

  • public void test_order_save() {
       
    Order orderToBeFound = new Order(SOME_ID, SOME_NAME1);
        orderToBeFound
    .save();
       
    new DataStorm().show( connection, "SELECT * FROM orders o WHERE o.id = " + SOME_ID );
        assertNotNull
    (orderToBeFound.load(SOME_ID));
    }
  • data storm window

This link has been bookmarked by 2 people . It was first bookmarked on 18 Jun 2008, by Christian Winkler.

  • 25 Jun 08
    benxshen
    Benx Shen

    Data Storm is a free open source data base browser. While there are millions of data base browsers freely available online, Data Storm is different as it can be launched directly from within your Java code. This enables you to see and modify data that otherwise may not be available to you.

    unit-test tool db

    • public void test_order_save() {
         
      Order orderToBeFound = new Order(SOME_ID, SOME_NAME1);
          orderToBeFound
      .save();
         
      new DataStorm().show( connection, "SELECT * FROM orders o WHERE o.id = " + SOME_ID );
          assertNotNull
      (orderToBeFound.load(SOME_ID));
      }
    • data storm window