is it possible to update and addressType within a customer type, the same as is is when inserting cos its not workin for me,
inserting...insert in customer values(.......AddressType(...))
updating...update customers set.............AddressType(......))

anyone know if this works the same?

my customer type is
CREATE OR REPLACE TYPE customer AS OBJECT(
acNo VARCHAR(8),
name VARCHAR2(25),
contactNo VARCHAR2(10),
address addressType)NOT FINAL;
/