; Launch with java -Xms16m -Xmx32m org.enhydra.instantdb.ScriptTool createproduct.txt ; First load the JDBC driver and open a database. d org.enhydra.instantdb.jdbc.idbDriver; o jdbc:idb=db.prp; e DROP TABLE product; e IMPORT product FROM "product.txt" USING "product_schema.txt"; q SELECT * FROM product; c close;