_createBlogStmt.setString(1, newBlog.getTitle());
_createBlogStmt.setString(2, newBlog.getDescription());
_createBlogStmt.execute();
_createBlogStmt.close();
} catch (SQLException e) {
throw new MapacheException("An error occurred when creating a new blog", e);
} catch (DAOException e) {
throw new MapacheException("An error occurred when creating a new blog", e);
} finally {
MySQLDAOFactory.freeConnection(_oConn);
}
}