Re: [RDBO] ARRAY column types in Rose::DB

2005-12-03 Thread Torsten Seemann
John, wasabi=> select * from atest; x - [0:3]={3,4,5,6} So in this case you'd like the Perl array to be [ 3, 4, 5, 6 ], correct? I'd be happy with that. In fact I wish Pg had a separate LIST type as opposed to ARRAY type, where indices were irrelevant. In Perl can you

Re: [RDBO] ARRAY column types in Rose::DB

2005-12-03 Thread John Siracusa
On 12/3/05 1:12 PM, Torsten Seemann wrote: >>> wasabi=> select * from atest; >>>x >>> - >>> [0:3]={3,4,5,6} >> So in this case you'd like the Perl array to be [ 3, 4, 5, 6 ], correct? > > I'd be happy with that. > > In fact I wish Pg had a separate LIST type as opposed to