SatishPutcha
Programmer
Hello Everybody,
I have a POS system developed in ASP with an Access database(the migration to MS-SQL on too).
It has around 60 tables and 300 ASP pages. Now I have seen that a query when executed in ASP at times returns different number of records as opposed to when I run the query directly in Access.
Any reasons why this could happen? My colleague who is working on the same system has also identified a similar problem.
Is this a design flaw? I am using ADODB connection and recordsets. In the two reports I saw this problem I am using disconnected recordsets like
Any inputs on this would be greatly helpful.
Thanks and Regards
Satish Kumar
I have a POS system developed in ASP with an Access database(the migration to MS-SQL on too).
It has around 60 tables and 300 ASP pages. Now I have seen that a query when executed in ASP at times returns different number of records as opposed to when I run the query directly in Access.
Any reasons why this could happen? My colleague who is working on the same system has also identified a similar problem.
Is this a design flaw? I am using ADODB connection and recordsets. In the two reports I saw this problem I am using disconnected recordsets like
Code:
Set rsNetStock = Server.CreateObject("ADODB.Recordset")
rsNetStock.CursorLocation = 3
rsNetStock.LockType = 3
rsNetStock.Open strStock, conn
Set rsNetStock.ActiveConnection = Nothing
Any inputs on this would be greatly helpful.
Thanks and Regards
Satish Kumar