Look at odbc_more_results in DBD::ODBC and the same in the test cases in the subdir called t when DBD::ODBC is unpacked.
Martin -- Martin J. Evans Easysoft Ltd, UK Development On 01-Dec-2004 Marc TRAVAILLE wrote: > Good evenning, > > I create a calculate Select on SQL Server: > > SELECT col1, col2, col3 > FROM table1, table2 > WHERE ..... > ORDER BY col1, col2 > COMPUTE SUM(col1) > > With SQL Server the result is good > Line1 > Line2 > Line3 > > SUM > > Line1 > Line2 > > SUM > > .... > > When I try with Perl and ODBC, I could only fetch first line (1,2,3 in my > exemple) As it consider the first SUM line is the result of an other query. > > Do you have an idea for my problem ? > > > Cordialement, Marc Travaillé