rs.recordset not working

M

MeSteve

I am trying to use rs.recordset to get the number of records in my table

Dim db As Database
Dim rs As Recordset
Set db = OpenDatabase("my database path")
Set rs = db.OpenRecordset("tbl_Projects")

MsgBox rs.RecordCount

This returns 1 even though it will populate an array fully using do until
..EOF loop. What am I missing?
 
K

Ken Warthen

MeSteve,

Try this:

Dim db as Database
Dim rs as Recordset
Dim intRecordCount as Integer

Set db=CurrentDb
set rs=db.openrecordset("MyTable")
With rs
.MoveFirst
.MoveLast
intRecordCount = .RecordCount
End With
rs.close
set rs=nothing
MsgBox intRecordCount


Ken Warthen
(e-mail address removed)
 
T

Truper

Ken,

I am also having a problem with RecordCount, but my RecordCount is returning
-1. I am using VBA in Access 2003. Here is my code.

Dim db As Object
Dim conn As ADODB.Connection
Dim cmd As New ADODB.Command
Dim rst As New ADODB.Recordset
Dim iRecCount As Long

Set db = Application.CurrentData
Set conn = Application.CurrentProject.Connection
cmd.ActiveConnection = conn
cmd.CommandType = adCmdText
cmd.CommandText = "SELECT * FROM Ticket WHERE PeriodFK = 1"
Set rst = New ADODB.Recordset
With rst
.Open cmd, , adOpenDynamic, adLockOptimistic
.MoveFirst
.MoveLast
iRecCount = .RecordCount
Debug.Print iRecCount ' This prints -1 in the debug window.
.MoveFirst
Do While .BOF = False And .EOF = False
' This loop occurs 20 times because there were 20 records in the
recordset
Loop
.Close
End With

Any suggestions why the RecordCount property is not working?
--

\\\\\\______________//////
( ) ( )
J
\_____/
 
D

Dirk Goldgar

Truper said:
Ken,

I am also having a problem with RecordCount, but my RecordCount is
returning
-1. I am using VBA in Access 2003. Here is my code.

Dim db As Object
Dim conn As ADODB.Connection
Dim cmd As New ADODB.Command
Dim rst As New ADODB.Recordset
Dim iRecCount As Long

Set db = Application.CurrentData
Set conn = Application.CurrentProject.Connection
cmd.ActiveConnection = conn
cmd.CommandType = adCmdText
cmd.CommandText = "SELECT * FROM Ticket WHERE PeriodFK = 1"
Set rst = New ADODB.Recordset
With rst
.Open cmd, , adOpenDynamic, adLockOptimistic
.MoveFirst
.MoveLast
iRecCount = .RecordCount
Debug.Print iRecCount ' This prints -1 in the debug window.
.MoveFirst
Do While .BOF = False And .EOF = False
' This loop occurs 20 times because there were 20 records in the
recordset
Loop
.Close
End With

Any suggestions why the RecordCount property is not working?

I think you have to use a client-side cursor. Try this:

Set rst = New ADODB.Recordset
With rst
.CursorLocation = adUseClient
.Open cmd, , adOpenDynamic, adLockOptimistic

' ...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top