Subject Re: Initializing arrays
Author slsolutions2002
Yes, I tried DEFAULT 0. The database is created ok but when a record
is inserted I get a wierd error something about string conversions
not supported.

--- In ib-support@y..., "Leyne, Sean" <sleyne@a...> wrote:
>
> > I have a table with an array declared as:
> >
> > Create Table xxx(
> > ...
> > HoursArray Float [1:50,1:5],
> > ...);
>
> I've never used arrays, nor do I know of many people who have, but
have
> you tried using the DEFAULT syntax, as in:
>
> Create Table xxx(
> ...
> HoursArray Float [1:50,1:5] Default 0,
> ...);
>
>
> Sean