5960616263646566
{ try { _dbControl.updateAddress(address); } catch (SQLException e) { _logger.error( "Unexpected DAO exception", e ); throw new DataStoreException("unexpected database exception"); } }
6970717273747576
{ try { _dbControl.insertAddress(address); } catch (SQLException e) { _logger.error( "Unexpected DAO exception", e ); throw new DataStoreException("unexpected database exception"); } }
7980818283848586
{ try { _dbControl.deleteAddress(addressId, userId); } catch (SQLException e) { _logger.error( "Unexpected DAO exception", e ); throw new DataStoreException("unexpected database exception"); } }
919293949596979899100
try { if (_dbControl.checkAddressExists(addressId, userId) > 0) ret = true; } catch (SQLException e) { _logger.error( "Unexpected DAO exception", e ); throw new DataStoreException("unexpected database exception"); } return ret; }