Hi
I have a query that goes into a recordset:
The thing is, when I open it using recordset Rst=DB.OpenRecordset(LSQL2) and then Rst.MoveFirst, it shows error saying no current record (which I assume the recordset is blank/empty). But the thing is if I try to open the query itself using:
the tmpTableForQRY shows records that should be inside the recordset. Any idea why my recordset is blank?
I have a query that goes into a recordset:
Code:
LSQL2 = "SELECT TblUnits.UnitID, TblParts.PartNumber, TblParts.PartDescription, TblParts.Material, " & _
"TblUnitPart.Qty, TblParts.PartCost, TblParts.VendorPart, TblVendor.VendorID, " & _
"TblVendor.VendorDesc, TblParts.Comments, TblOrderUnit.OrderunitID " & _
"FROM (TblVendor INNER JOIN ((TblUnits INNER JOIN TblOrderUnit ON TblUnits.UnitID = TblOrderUnit.UnitID)" & _
"INNER JOIN (TblParts INNER JOIN TblUnitPart ON TblParts.PartID = TblUnitPart.PartID) " & _
"ON TblUnits.UnitID = TblUnitPart.UnitID) ON TblVendor.VendorID = TblParts.VendorID) " & _
"WHERE ((TblUnits.UnitID)=" & Lrs("UnitID") & " AND (TblOrderUnit.OrderID)=" & TempOrderID & ")"
The thing is, when I open it using recordset Rst=DB.OpenRecordset(LSQL2) and then Rst.MoveFirst, it shows error saying no current record (which I assume the recordset is blank/empty). But the thing is if I try to open the query itself using:
Code:
Dim qdf As QueryDef
With DB
Set qdf = .CreateQueryDef("tmpTableForQRY", LSQL2)
DoCmd.OpenQuery "tmpTableForQRY"
.QueryDefs.Delete "tmpTableForQRY"
End With
qdf.Close
the tmpTableForQRY shows records that should be inside the recordset. Any idea why my recordset is blank?