Subject | Re: Initializing arrays |
---|---|
Author | slsolutions2002 |
Post date | 2002-02-22T19:59:24Z |
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.
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