[EMAIL PROTECTED] wrote:
> $dbh = DBI->connect('dbi:AnyData(RaiseError=>1):') || die print "$DBI::errstr"; > $dbh->func( 'user' , 'CSV' , '/script_path/data/user.csv' , 'ad_catalog' ) || die >print "$DBI::errstr"; Remove the || die part of the $dbh->func() call, it isn't needed (since you already set RaiseError to 1). Also you can't currently test ad_catalog that way -- the next release will report true on sucess but the current one doesn't, sorry. > Until I wrapped an if statement around the code that calls test() to > not test XML. Let me guess, you're on Linux? If so, this is a known bug relating to XML and flocking. It should not have any impact on other uses of AnyData. If you're on some other OS and get this problem, please let me know. -- Jeff