All Downloads are FREE. Search and download functionalities are using the official Maven repository.

orders.setup.sql Maven / Gradle / Ivy

Go to download

dbUnit is a JUnit extension (also usable from Ant and Maven) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage.

There is a newer version: 2.8.0
Show newest version
DROP TABLE ORDERS;
DROP TABLE ORDERS_ROW;

CREATE TABLE ORDERS (ID INTEGER, DESCRIPTION VARCHAR);
CREATE TABLE ORDERS_ROW (ID INTEGER, DESCRIPTION VARCHAR, QUANTITY INTEGER);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy