/** executes the given SQL statement via the defaultConnection
*/
public void executeSQL(final String statementString) throws SQLException
{
final XStatement statement = defaultConnection().createStatement();
statement.execute(statementString);
}
/** stores the database document
*/
public void store() throws IOException