getCustomerByUserId = sqlConnection.prepareStatement(SQL_SELECT_GET_CUSTOMER_BY_USERID);
getCustomerByUserId.setString(1, userId);
ResultSet rs = getCustomerByUserId.executeQuery();
if (rs.next()) {
try {
CustomAccountBean bean = new CustomAccountBean(
rs.getInt(1), rs.getString(2), StockTraderUtility
.convertToCalendar(rs.getDate(3)), rs
.getBigDecimal(4), rs.getInt(5), rs
.getBigDecimal(6), StockTraderUtility
.convertToCalendar(rs.getDate(7)), rs