in reply to finding field infomation with DBI and ODBC

does any one know where the "DescribeCol" function is documented?

If you're running ActiveState Perl, it's in the documentation.   Start / Programs / ActiveState ActivePerl / Documentation Launches a browser on their documentation index. Scroll the left column down to DBI. In that page, the section "Statement Handle Attributes" covers the functions you need. The DBI API covers in several function what ODBC covers in one. This makes the API portable across more native database APIs.

Replies are listed 'Best First'.
Re: Re: finding field infomation with DBI and ODBC
by thunders (Priest) on Jan 14, 2002 at 01:51 UTC
    I had already checked the DBI Documentation as well as the DBD::ODBC docs. I think I realize the problem. The function I was using is defined in ODBC documentation. Which I just found online here I'll try to do this via the functions you mentioned. Thanks.