On Thu, 8 Apr 2004 11:42:41 +1000, Simon Jordan wrote:

>What is the equivalent dbi syntax for the following win32:odbc syntax ?
>
>@FieldNames = $O->FieldNames();

I don't know Win32::ODBC... but I guess you want

        @FieldNames = @{ $sth->{NAME} };

where $sth is a DBI statement handle for a SELECT query.

-- 
        Bart.

Reply via email to