O
OldEnough
I need a bit of guidance for an overflow error . Example follows:
Dim db as DAO.Database
Set db = CurrentDB
Dim rs as DAO.Recordset
Dim strSQL as String
strSQL = "SELECT Mytable.Field1, Mytable.Field2, Mytable.Field3 FROM Mytable"
SET rs = dbOpenRecordset(strSQL,dbOpenDynaset)
fault occurs here (Overflow Error #6)
The table has around 133K records, though recordset only needs 3 (long
integer)fields .
Is there a way to use this approach with some modification? Can someone
suggest a workaround or a better approach?
Dim db as DAO.Database
Set db = CurrentDB
Dim rs as DAO.Recordset
Dim strSQL as String
strSQL = "SELECT Mytable.Field1, Mytable.Field2, Mytable.Field3 FROM Mytable"
SET rs = dbOpenRecordset(strSQL,dbOpenDynaset)
fault occurs here (Overflow Error #6)
The table has around 133K records, though recordset only needs 3 (long
integer)fields .
Is there a way to use this approach with some modification? Can someone
suggest a workaround or a better approach?