On Mon, Dec 10, 2001 at 12:04:47PM -0600, Fannin, David P. wrote:
> I have gotten around this by using the following:
>
> eval ('my $CatVal = $attr->{TABLE_CAT};');That will break the code, because $CatVal is now scoped to the eval. Even if it weren't, it wouldn't have any effect on the uninitialized value warning, which occurs later on in the code and wouldn't be trapped by an eval anyway. Ronald
