RE: [Arsperl-users] SLES9 + ARSPerl 1.82
Brought to you by:
jeffmurphy
|
From: Richard H. <rl...@ls...> - 2005-04-13 09:11:51
|
-----Original Message----- From: ars...@ar... [mailto:arsperl-users- # Retrieve all of the entry-id's for the schema. my %entries = ars_GetListEntry($ars_connect->ctrl, $scheme, $qual, 0); ------------------- Christoph, The first thing I'd eliminate is the missing 0 in the ars_GetListEntry() call. That is, try writing: my %entries = ars_GetListEntry($ars_connect->ctrl, $scheme, $qual, 0, 0); (one zero specifies the max # of entries (0 => infinity) and the other means start the fetch at the first entry). Try this and see what happens. Cheers, Richard. |