Penguin

Differences between current version and previous revision of hsqldbNotes.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 5 Last edited on Tuesday, December 2, 2008 8:54:01 am by ShaneHowearth
Older page: version 4 Last edited on Monday, December 1, 2008 5:03:35 pm by ShaneHowearth Revert
@@ -1,7 +1,7 @@
 HSQLDB is a small database manager written in [Java]. It can be used in several modes, basically Server mode and In Process (embedded within your application) mode. But all this can be found on http://hsqldb.org/web/hsqlDocsFrame.html. 
  
-90% of the documentation I have found for developing with HSQLDB is related to using an ide such as eclipse , or IntelliJ. 
+90% of the documentation I have found for developing with HSQLDB is related to using an ide such as [Eclipse] , or IntelliJ. 
  
 If you want to dispense with those tools you can do so by following these instructions: 
  
 download hsqldb from http://sourceforge.net/project/showfiles.php?group_id=23316 
@@ -27,9 +27,9 @@
  /* Create a connection to the testdb, located in the same working directory as this code */ 
  
  Connection c = DriverManager.getConnection("jdbc:hsqldb:file:testdb", "sa", ""); 
  
- /* Handle any and all exceptions */ 
+ /* Handle all the exceptions */ 
  
  }catch (java.sql.SQLException SQLe){ 
  System.out.println(SQLe); 
  }catch (java.lang.ClassNotFoundException CNFE){