📄 categorywebhelper.java
字号:
if (statement.executeUpdate() != 1) {
throw new CreateException("Error adding a row into table 'Category'.");
}
m_dirty = true;
} catch(SQLException sqle) {
sqle.printStackTrace();
throw new DatabaseException("Error executing SQL in CategoryWebHelper.create.");
} finally {
DBUtils.closeStatement(statement);
DBUtils.closeConnection(connection);
}
}
/*
// @todo: copy this method for derived class
public static void updateCategory(int categoryID, // primary key
String categoryName, String categoryDesc, Timestamp categoryModifiedDate,
int categoryOrder, int categoryOption, int categoryStatus)
throws BadInputException, DatabaseException, ForeignKeyNotFoundException {
net.myvietnam.webplugin.mvnforum.db.CategoryWebHelper.update(categoryID, // primary key
categoryName, categoryDesc, categoryModifiedDate,
categoryOrder, categoryOption, categoryStatus);
}
*/
/*
* Included columns: CategoryName, CategoryDesc, CategoryModifiedDate, CategoryOrder, CategoryOption,
* CategoryStatus
* Excluded columns: CategoryID, ParentCategoryID, CategoryCreationDate
*/
protected static void update(int categoryID, // primary key
String categoryName, String categoryDesc, Timestamp categoryModifiedDate,
int categoryOrder, int categoryOption, int categoryStatus)
throws BadInputException, DatabaseException, DuplicateKeyException {
CategoryBean bean = getBean(categoryID); // @todo: comment or delete this line if no alternate key are included
if ( !categoryName.equals(bean.getCategoryName()) ) {
// Category tries to change its alternate key <CategoryName>, so we must check if it already exist
try {
findByAlternateKey_CategoryName(categoryName);
throw new DuplicateKeyException("Alternate key <CategoryName> (" + categoryName + ")already exists. Cannot update Category.");
} catch(ObjectNotFoundException e) {
//Otherwise we can go ahead
}
}
Connection connection = null;
PreparedStatement statement = null;
StringBuffer sql = new StringBuffer(512);
sql.append("UPDATE " + TABLE_NAME + " SET CategoryName = ?, CategoryDesc = ?, CategoryModifiedDate = ?, CategoryOrder = ?, CategoryOption = ?, CategoryStatus = ?");
sql.append(" WHERE CategoryID = ?");
try {
connection = DBUtils.getConnection();
statement = connection.prepareStatement(sql.toString());
// // column(s) to update
statement.setString(1, categoryName);
statement.setString(2, categoryDesc);
statement.setTimestamp(3, categoryModifiedDate);
statement.setInt(4, categoryOrder);
statement.setInt(5, categoryOption);
statement.setInt(6, categoryStatus);
// primary key column(s)
statement.setInt(7, categoryID);
if (statement.executeUpdate() != 1) {
throw new BadInputException("Cannot update table Category where primary key = (" + categoryID + ").");
}
m_dirty = true;
} catch(SQLException sqle) {
sqle.printStackTrace();
throw new DatabaseException("Error executing SQL in CategoryWebHelper.update.");
} finally {
DBUtils.closeStatement(statement);
DBUtils.closeConnection(connection);
}
}
/*
// @todo: copy this method for derived class
public static CategoryBean getCategory(int categoryID)
throws BadInputException, DatabaseException {
return net.myvietnam.webplugin.mvnforum.db.CategoryWebHelper.getBean(categoryID);
}
*/
/*
* Included columns: ParentCategoryID, CategoryName, CategoryDesc, CategoryCreationDate, CategoryModifiedDate,
* CategoryOrder, CategoryOption, CategoryStatus
* Excluded columns: CategoryID
*/
protected static CategoryBean getBean(int categoryID)
throws BadInputException, DatabaseException {
Connection connection = null;
PreparedStatement statement = null;
ResultSet resultSet = null;
StringBuffer sql = new StringBuffer(512);
sql.append("SELECT ParentCategoryID, CategoryName, CategoryDesc, CategoryCreationDate, CategoryModifiedDate, CategoryOrder, CategoryOption, CategoryStatus");
sql.append(" FROM " + TABLE_NAME);
sql.append(" WHERE CategoryID = ?");
try {
connection = DBUtils.getConnection();
statement = connection.prepareStatement(sql.toString());
statement.setInt(1, categoryID);
resultSet = statement.executeQuery();
if(!resultSet.next()) {
throw new BadInputException("Cannot find the row in table Category where primary key = (" + categoryID + ").");
}
CategoryBean bean = new CategoryBean();
// @todo: uncomment the following line(s) as needed
bean.setCategoryID(categoryID);
bean.setParentCategoryID(resultSet.getInt("ParentCategoryID"));
bean.setCategoryName(resultSet.getString("CategoryName"));
bean.setCategoryDesc(resultSet.getString("CategoryDesc"));
bean.setCategoryCreationDate(resultSet.getTimestamp("CategoryCreationDate"));
bean.setCategoryModifiedDate(resultSet.getTimestamp("CategoryModifiedDate"));
bean.setCategoryOrder(resultSet.getInt("CategoryOrder"));
bean.setCategoryOption(resultSet.getInt("CategoryOption"));
bean.setCategoryStatus(resultSet.getInt("CategoryStatus"));
return bean;
} catch(SQLException sqle) {
sqle.printStackTrace();
throw new DatabaseException("Error executing SQL in CategoryWebHelper.getBean(pk).");
} finally {
DBUtils.closeResultSet(resultSet);
DBUtils.closeStatement(statement);
DBUtils.closeConnection(connection);
}
}
/*
// @todo: copy this method for derived class
public static Collection getCategorys()
throws DatabaseException {
return net.myvietnam.webplugin.mvnforum.db.CategoryWebHelper.getBeans();
}
*/
/*
* Included columns: CategoryID, ParentCategoryID, CategoryName, CategoryDesc, CategoryCreationDate,
* CategoryModifiedDate, CategoryOrder, CategoryOption, CategoryStatus
* Excluded columns:
*/
protected static Collection getBeans()
throws DatabaseException {
Connection connection = null;
PreparedStatement statement = null;
ResultSet resultSet = null;
Collection retValue = new ArrayList();
StringBuffer sql = new StringBuffer(512);
sql.append("SELECT CategoryID, ParentCategoryID, CategoryName, CategoryDesc, CategoryCreationDate, CategoryModifiedDate, CategoryOrder, CategoryOption, CategoryStatus");
sql.append(" FROM " + TABLE_NAME);
//sql.append(" WHERE "); // @todo: uncomment as needed
sql.append(" ORDER BY CategoryOrder ASC "); // @todo: uncomment as needed
try {
connection = DBUtils.getConnection();
statement = connection.prepareStatement(sql.toString());
resultSet = statement.executeQuery();
while (resultSet.next()) {
CategoryBean bean = new CategoryBean();
bean.setCategoryID(resultSet.getInt("CategoryID"));
bean.setParentCategoryID(resultSet.getInt("ParentCategoryID"));
bean.setCategoryName(resultSet.getString("CategoryName"));
bean.setCategoryDesc(resultSet.getString("CategoryDesc"));
bean.setCategoryCreationDate(resultSet.getTimestamp("CategoryCreationDate"));
bean.setCategoryModifiedDate(resultSet.getTimestamp("CategoryModifiedDate"));
bean.setCategoryOrder(resultSet.getInt("CategoryOrder"));
bean.setCategoryOption(resultSet.getInt("CategoryOption"));
bean.setCategoryStatus(resultSet.getInt("CategoryStatus"));
retValue.add(bean);
}
return retValue;
} catch(SQLException sqle) {
sqle.printStackTrace();
throw new DatabaseException("Error executing SQL in CategoryWebHelper.getBeans.");
} finally {
DBUtils.closeResultSet(resultSet);
DBUtils.closeStatement(statement);
DBUtils.closeConnection(connection);
}
}
}// end of class CategoryWebHelper
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -