Public Class Cliente
Inherits CPersistentObject
Private _codigoCliente As Integer
Private _nombre As String
Private _direcciones as ArrayList
.....
.....
end Class
dim cl as Cliente= new Cliente()
...
dim a as Direccion
cl.direcciones.add(a)
...
cl.save() 'Save cl
how save the ArrayList if I have reference integrity.
When i am use CPersistenCollection, cl.direcciones.save is correct, but with arrayList ??????????????
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi.
I have a following structure:
Public Class Cliente
Inherits CPersistentObject
Private _codigoCliente As Integer
Private _nombre As String
Private _direcciones as ArrayList
.....
.....
end Class
dim cl as Cliente= new Cliente()
...
dim a as Direccion
cl.direcciones.add(a)
...
cl.save() 'Save cl
how save the ArrayList if I have reference integrity.
When i am use CPersistenCollection, cl.direcciones.save is correct, but with arrayList ??????????????