473,395 Members | 1,466 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Problems w/ ADODB.Recordset as Report Source...

Oko
I'm currently developing an MS Access Data Project (.adp) in MS Access
2002.

One of the reports within the DB uses data that is Dynamic and cannot
be stored on the SQL Server. To resolve this, I have created an
ADODB.Recordset in the reports OPEN event, built the necessary records
inside of it, and then bound the report to this newly created
recordset.

Here's the rub:

It seems that no matter what, it iterates through all of the records
but each record displays the value of the last record. So assuming one
field named rptName (which is my setup) where there are 4 records that
say "Oscar", "Dennis", "John", and "Terrance" respectively the report
would return:

Terrance
Terrance
Terrance
Terrance

Obviously this is sub-optimal.

Anyone have any idea what I'm missing and how I can resolve this?

TIA

-j
Nov 27 '07 #1
6 5130
The problem is that you are using an Access ADP and still trying to
develop in terms of Access. When using an ADP you aren't really in
Access anymore. You are now in Sql Server country but can still use
VBA. The ADP is only a Front End to Sql Server. You need to think in
terms of stored procedures and Transact Sql.

For your report from the ADP you need to create your recordsource from a
stored procedure. First, create your stored procedure. Run it in Query
Analyzer and see if the resultset is what you want. If yes, then set
the StoreProc as the recordsource for your report object in the Access
ADP.

At the bottom of the property sheet for the ADP Report object is a
textfield for Input Parameters. You can populate this textfield like
this with default parameters:

@UserId='tiger', @Begindate='12/15/07', @EndDate='12/31/07'

And these would be parameters in your stored procedure.

Recordset Objects won't work in an ADP. The sql Server equivalent of a
Recordset object is a Cursor. Cursors are used primarily as an add-hoc
tool in Query Analyzer to examine data SLOWLY. Cursors are slow and
resource intensive.

Rich

*** Sent via Developersdex http://www.developersdex.com ***
Nov 27 '07 #2
Oko
Which bares "the rub": The Admins will not allow us to create the
additional Stored Procs - forcing us to utilize this particular type
of solution. Would love to go another direction - but can't [at least
not yet] and I need results within a reasonable time frame.

Playing with a .movefirst and a .movelast during this last so many
minutes has allowed me to control whether the first record or last
record is the record displayed. This - to me - indicates that the
report is not properly moving through the recordset on its own.

Any ideas on how I might be able to properly control that movement
would be appreciated.

Rich P wrote:
The problem is that you are using an Access ADP and still trying to
develop in terms of Access. When using an ADP you aren't really in
Access anymore. You are now in Sql Server country but can still use
VBA. The ADP is only a Front End to Sql Server. You need to think in
terms of stored procedures and Transact Sql.

For your report from the ADP you need to create your recordsource from a
stored procedure. First, create your stored procedure. Run it in Query
Analyzer and see if the resultset is what you want. If yes, then set
the StoreProc as the recordsource for your report object in the Access
ADP.

At the bottom of the property sheet for the ADP Report object is a
textfield for Input Parameters. You can populate this textfield like
this with default parameters:

@UserId='tiger', @Begindate='12/15/07', @EndDate='12/31/07'

And these would be parameters in your stored procedure.

Recordset Objects won't work in an ADP. The sql Server equivalent of a
Recordset object is a Cursor. Cursors are used primarily as an add-hoc
tool in Query Analyzer to examine data SLOWLY. Cursors are slow and
resource intensive.

Rich

*** Sent via Developersdex http://www.developersdex.com ***
Nov 27 '07 #3
If you don't have development rights on the sql server then I would
scrap the ADP solution and use an mdb and ADO to work with the data from
the sql server. Then you can start thinking in Access terms again.

If your employer is bent on the ADP without the flexibility to develop
required procedures on the sql server then your only other option would
be to start playing solitaire.

Rich

*** Sent via Developersdex http://www.developersdex.com ***
Nov 27 '07 #4
Oko
This IS possible. The problem can be solved using the FormatCount
parameter in the report's Detail_Format() event, combined with a value
stored somewhere to say if you're on the first record or not. When
FormatCount = 1 you should advance the ADODB.Recordset via code
(unless you're on the first record). This will force the report to
iterate through your recordset - giving you the results you need.

To be complete:

The ADODB.Recordset is first created in the Report_Open() event as a
New ADODB.Recordset. This is a temporary recordset residing in local
memory - and not on the SQL Server. The code for the structure is:

Dim rstAttachments As ADODB.Recordset

Set rstAttachments = New ADODB.Recordset
With rstAttachments
.CursorLocation = adUseClient
.CursorType = adOpenDynamic
.Fields.Append "rptName", adVarChar, 255
.Fields.Append "delete", adBoolean
.Fields.Append "recNo", adInteger
.Fields.Refresh
.Open
End With

The recordset is then populated - in this case using information in a
series of checkboxes in a user form - and then once populated is
assigned to the report's Recordset property. The original recordset -
rstAttachments - is then set to NOTHING, and the report's recordset is
moved to the first record (just to be safe).

Set Me.Recordset = rstAttachments
Set rstAttachments = Nothing

Me.Recordset.MoveFirst

In the ReportHeader_Format() Event the Reports Tag Property is set to
0. This allows me to know when I'm in the Detail_Format() event if I'm
viewing the very first record or not. This is important because I
don't want to advance the cursor if I'm on the first record - only for
the later records do I want to advance it.

Me.Tag = 0

The final bit is in Detail_Format(). Taking my cue from the value of
FormatCount, I move the record pointer ahead one when FormatCount = 1
- EXCEPT when Me.Tag = 0. When Me.Tag = 0 I ignore the record pointer
and set Me.Tag to 1 so that the next time FormatCount = 1 the routine
will work.

If FormatCount = 1 Then
Select Case Me.Tag
Case 0
Me.Tag = 1
Case Else
With Me.Recordset
.Fields("delete") = True
.MoveFirst
.Find ("delete = False")
End With
End Select
End If

Note that in the above routine I used a slightly paranoid approach. I
marked records off as they were formatted and then traveled back to
the first record and searched for the first, unformatted record. I
have no reason to believe a simple .movenext is insufficient - I'm
just paranoid like that. Also, this may not be the best way to go for
a large recordset.

On a final note, I simply close the recordset once I'm done with it
via the Report_Close() event.

With Me.Recordset
.Close
End With

Oko wrote:
I'm currently developing an MS Access Data Project (.adp) in MS Access
2002.

One of the reports within the DB uses data that is Dynamic and cannot
be stored on the SQL Server. To resolve this, I have created an
ADODB.Recordset in the reports OPEN event, built the necessary records
inside of it, and then bound the report to this newly created
recordset.

Here's the rub:

It seems that no matter what, it iterates through all of the records
but each record displays the value of the last record. So assuming one
field named rptName (which is my setup) where there are 4 records that
say "Oscar", "Dennis", "John", and "Terrance" respectively the report
would return:

Terrance
Terrance
Terrance
Terrance

Obviously this is sub-optimal.

Anyone have any idea what I'm missing and how I can resolve this?

TIA

-j
Nov 28 '07 #5
On Nov 27, 5:21 pm, Oko <without...@gmail.comwrote:
I'm currently developing an MS Access Data Project (.adp) in MS Access
2002.

One of the reports within the DB uses data that is Dynamic and cannot
be stored on the SQL Server. To resolve this, I have created an
ADODB.Recordset in the reports OPEN event, built the necessary records
inside of it, and then bound the report to this newly created
recordset.

Here's the rub:

It seems that no matter what, it iterates through all of the records
but each record displays the value of the last record. So assuming one
field named rptName (which is my setup) where there are 4 records that
say "Oscar", "Dennis", "John", and "Terrance" respectively the report
would return:

Terrance
Terrance
Terrance
Terrance

Obviously this is sub-optimal.

Anyone have any idea what I'm missing and how I can resolve this?

TIA

-j
My idea is that you did something wrong. If you post your code I, or
someone else, might even be able to tell you what it is. If we can't,
we will have learned something new from your code. If you don't post
your code, I'll just write you off as the kind of inexperienced newbie
who might accept the rest of the erronoeous and misleading replies you
have received, as valid.
" When using an ADP you aren't really in Access anymore". There's
stupid and then there's this guy who says whatever come into his head;
usually it's wrong!
Nov 28 '07 #6
On Nov 27, 8:30 pm, Oko <without...@gmail.comwrote:
This IS possible. The problem can be solved using the FormatCount
parameter in the report's Detail_Format() event, combined with a value
stored somewhere to say if you're on the first record or not. When
FormatCount = 1 you should advance the ADODB.Recordset via code
(unless you're on the first record). This will force the report to
iterate through your recordset - giving you the results you need.

To be complete:

The ADODB.Recordset is first created in the Report_Open() event as a
New ADODB.Recordset. This is a temporary recordset residing in local
memory - and not on the SQL Server. The code for the structure is:

Dim rstAttachments As ADODB.Recordset

Set rstAttachments = New ADODB.Recordset
With rstAttachments
.CursorLocation = adUseClient
.CursorType = adOpenDynamic
.Fields.Append "rptName", adVarChar, 255
.Fields.Append "delete", adBoolean
.Fields.Append "recNo", adInteger
.Fields.Refresh
.Open
End With

The recordset is then populated - in this case using information in a
series of checkboxes in a user form - and then once populated is
assigned to the report's Recordset property. The original recordset -
rstAttachments - is then set to NOTHING, and the report's recordset is
moved to the first record (just to be safe).

Set Me.Recordset = rstAttachments
Set rstAttachments = Nothing

Me.Recordset.MoveFirst

In the ReportHeader_Format() Event the Reports Tag Property is set to
0. This allows me to know when I'm in the Detail_Format() event if I'm
viewing the very first record or not. This is important because I
don't want to advance the cursor if I'm on the first record - only for
the later records do I want to advance it.

Me.Tag = 0

The final bit is in Detail_Format(). Taking my cue from the value of
FormatCount, I move the record pointer ahead one when FormatCount = 1
- EXCEPT when Me.Tag = 0. When Me.Tag = 0 I ignore the record pointer
and set Me.Tag to 1 so that the next time FormatCount = 1 the routine
will work.

If FormatCount = 1 Then
Select Case Me.Tag
Case 0
Me.Tag = 1
Case Else
With Me.Recordset
.Fields("delete") = True
.MoveFirst
.Find ("delete = False")
End With
End Select
End If

Note that in the above routine I used a slightly paranoid approach. I
marked records off as they were formatted and then traveled back to
the first record and searched for the first, unformatted record. I
have no reason to believe a simple .movenext is insufficient - I'm
just paranoid like that. Also, this may not be the best way to go for
a large recordset.

On a final note, I simply close the recordset once I'm done with it
via the Report_Close() event.

With Me.Recordset
.Close
End With

Oko wrote:
I'm currently developing an MS Access Data Project (.adp) in MS Access
2002.
One of the reports within the DB uses data that is Dynamic and cannot
be stored on the SQL Server. To resolve this, I have created an
ADODB.Recordset in the reports OPEN event, built the necessary records
inside of it, and then bound the report to this newly created
recordset.
Here's the rub:
It seems that no matter what, it iterates through all of the records
but each record displays the value of the last record. So assuming one
field named rptName (which is my setup) where there are 4 records that
say "Oscar", "Dennis", "John", and "Terrance" respectively the report
would return:
Terrance
Terrance
Terrance
Terrance
Obviously this is sub-optimal.
Anyone have any idea what I'm missing and how I can resolve this?
TIA
-j
I just tried this in Access 2002. It works. Perhaps, there is
something here that will help.

Private Sub Report_Open(Cancel As Integer)
Dim r As ADODB.Recordset
Set r = New ADODB.Recordset
Dim z As Long
With r
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockBatchOptimistic
.Fields.Append "AccountID", adInteger
.Fields.Append "CommonName", adLongVarChar, 255, adFldIsNullable
.Fields.Append "Valid", adBoolean
.Open
For z = 1 To 3
.AddNew Array(0, 1, 2), Array(z, Chr$(z + 64), CBool(z Mod 2))
Next z
.UpdateBatch
.MoveFirst
End With
Set Me.Recordset = r
End Sub

It shows

1 A check
2 B
3 C check
Nov 28 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: elcc1958 | last post by:
I need to support a VB6 application that will be receiving disconnected ADODB.Recordset from out DotNet solution. Our dotnet solution deals with System.Data.DataTable. I need to populate a...
5
by: Simone | last post by:
Hello I hope you guys can help me. I am very new to ADO... I am creating a ADODB connection in a module and trying to access it from a command button in a form. Function fxEIDAssgn(plngEID As...
0
by: CFW | last post by:
I thought this was going to be easy but I'm missing something . . . I need to open an ADODB recordset using the recordset source for a list box on my for. When my form opens, the list box ADODB...
3
by: | last post by:
Hello ppl, I have snippet that works fine udner ADODB with VB6, but something wrong with it in Vb.NET. Anyone can help? Recordset1 (ADODB.Recordset) Error: Arguments are of the wrong type, are...
0
by: sonasiva | last post by:
hai Iam creating website using ASP i wnts my clients to register first to vist site using username and password,,this i need to do iam getting error like this ADODB.Recordset (0x800A0BB9)...
0
by: PCroser | last post by:
I have encountered a problem when querying a table. The query passed data into a recordset which should have resulted in many records but has returned EOF. After debugging the code the only...
1
by: sanika1507 | last post by:
Hi .Actually I want to count the number of records in a recordset. So I m using the ADODB.Recordset. I just want some one to correct me. Set Cmd = Server.CreateObject("ADODB.Recordset") ...
1
by: shivasusan | last post by:
Hi Friends! Please Help me! How i can solve this error? Please explain me, what is the error and how to solve? Error Type: ADODB.Recordset (0x800A0E7D) The connection cannot be used to...
1
by: Kloj | last post by:
I have two queries in MS.Access, qry1 and qry2. qry1 is based on table1, qry1 has two fields i.e Qty and Product. qry2 is sum of qry1. qry2 has two fields i.e Sum_of_Qty and Product, qry2...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.