Not aware of any issues, but you may need to make sure that you are using a client-side cursor:
Code:
Set RS = Server.CreateObject("ADODB.Recordset")
RS.CursorLocation = 3 ' adUseClient
RS.Open SQL, conn
...
Does it work okay if you do *NOT* use GetRows()??