I have a "CustmerCrd" class that containing :
1.object of "Person" (another class) , let's call it per.
2.object of "Color" (enum type) , let's call it color.
My mission:
I had to create a DataBase table for this CustmerCrd class ,by using the "netbeans- create table dialog ". How do I do this?
my problem:
in the "Type" rubric (in the create table dialog) I have only the following types:
Date, TimeStamp, Boolean, Time, Decimal, Long varchacr, Char for bit data, VarChar for bit data, char, Real, Small int, BigInt, varChar, Blob, Double, integer, numeric, clob...
but i need "enum Color" type and "Person" type ,and of course it does not exist...
thank!