in reply to Re: SQL against a AoH?
in thread SQL against a AoH?

jZed's suggestion to use DBD::AnyData is a good one, but remember that you will need to have DBI installed for this to work.

I think I can get DBI installed, and maybe DBD::AnyDate. The issue with DBD::Sybase was that Sybase::DBlib is the "standard", so SysAdmin dind't want to install anything else. Thanks for the soon reply and for pointing me to that module, I think I have to improve my CPAN search abilities =(.

Replies are listed 'Best First'.
Re^3: SQL against a AoH?
by mpeppler (Vicar) on Jul 26, 2004 at 17:22 UTC
    DBD::Sybase vs. Sybase::DBlib...
    You should really be using Sybase::CTlib if you are not using DBD::Sybase. The reason is that it is based on Sybase's Client Library API, rather than the older DB-Library. While DB-Library is "supported", it is no longer enhanced, and you may be running into problems if your dataservers start using some of the newer features (such as wide varchar support, for example.)

    Michael