Joo 1.1.3 Download Now Available

2 Comments - Post a comment - Share

Version 1.1.3 of Joo is now available for download via the Downloads page.

This release introduces a new static method that will automate the database creation process; meaning you will no longer be required to manually code the functionality into a system utilising Joo.

Example

import Joo.*;

public class JooTest {
	public static void main(String[] args) {
		if(Joo.createDatabase("/path/to/new/database/directory"))
		{
			System.out.println("The database was created!");
		}
		else
		{
			System.out.println("The database was not created!");
		}
	}
}

Initial Google Code Release

No Comments - Post a comment - Share

The first release of Joo is being submitted to the Google Code repository later today and will be accessible via Subversion for anyone who wishes to use this as a means of keeping their working copy up to date.

As can you may have noticed, joodbms.co.uk is not quite finished yet but is now open as the important aspects of the website are now complete.

For information on how you can help the project please visit the Getting involved page.