w MySQL po selectie robilem wyswietlanie danych nastepujace:
<?php $rs = $db->Execute("select * from TABELA"); while ($row = $rs->FetchRow()) { } ?>
natomiast w MSSQL to nie dziala,
dane wyswietlaja sie tylko takim zapisem:
<?php $rs = $db->Execute("select * from TABELA"); while ($row = $rs->FetchRow()) { } ?>
Da sie wyswietlic dane dla mssql pierwszym sposobem?