Subject Default values don't work Properly
Author Sandeep
Hi

I have table with default values for field defined in database as

create table "Sample" (
"Number" integer not null primary key,
"Date" Date default current_Date,
.
.
.
.);

if I use IBOTable the default values are not added to the table. I
know there is default values property but that is like assigning
values to the field, but default values must be filled in if they are not
specified, which doesn't happens. Any Suggestions?