Apr
21
2010
Joo 1.1.3 Download Now Available
2 Comments - Post a comment - ShareVersion 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!");
}
}
}
