_saveCategoryStmt.setString(1, category.getName());
_saveCategoryStmt.setInt(2, category.getCategoryID());
_saveCategoryStmt.execute();
_saveCategoryStmt.close();
} catch (SQLException e) {
throw new MapacheException("Error occurred when saving category", e);
} catch (DAOException e) {
throw new MapacheException("Error occurred when saving category", e);
} finally {
MySQLDAOFactory.freeConnection(_oConn);
}
}