Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error: No Current Record

Status
Not open for further replies.

davyre

Programmer
Oct 3, 2012
197
AU
Hi
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?
 
I got
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)=41 AND (TblOrderUnit.OrderID)=1)

I have added a space in the fourth line
Code:
"FROM (TblVendor INNER JOIN ((TblUnits INNER JOIN TblOrderUnit ON TblUnits.UnitID = TblOrderUnit.UnitID)[highlight #FCAF3E] [/highlight]" & _

but it is still no current record.
 
And what do you get if you take the SQL statement and paste it into a new query?

Have you added a breakpoint to step through the code? You can then use something in the debug window like:
Code:
? Rst.BOF

? Rst.EOF

Duane
Hook'D on Access
MS Access MVP
 
by debug window, do you mean immediate window?
while I debug the code, these results are shown:
? Rst.BOF
True
? Rst.EOF
True

I assume that means the Rst is empty. I tried to rename the sql and insert it into the recordset, and it does not change anything.
 
There are no records returned from the SQL. Did you attempt to copy and paste this into a new, blank query SQL view:
SQL:
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)=41 AND (TblOrderUnit.OrderID)=1)

Duane
Hook'D on Access
MS Access MVP
 
I tried, and the new SQL returns no record (empty). But why when I use querydef on my first post, it shows the records?
 
update: I tried to use the querydef again, and now it is empty. Maybe there is something wrong with the query. AFAIK I did not modify anything regarding the query and the data should be there. I will check the query again anyway. Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top