insertAccountProfile.setString(5, accountProfileBean
.getCreditCard());
insertAccountProfile.setString(6, accountProfileBean.getFullName());
insertAccountProfile.executeUpdate();
} catch (SQLException e) {
throw new DAOException("", e);
} finally {
if (insertAccountProfile != null) {
try {
insertAccountProfile.close();
} catch (SQLException e) {