473,382 Members | 1,386 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes and contribute your articles to a community of 473,382 developers and data experts.

Retrieving Data From an ADO Recordset Using GetRows()

ADezii
8,834 Expert 8TB
[OVERVIEW]
Last Tip, we demonstrated the technique for retrieving data from a DAO Recordset, and placing it into a 2-dimensional Array using the GetRows() Method. This week, we will cover the same exact Method (GetRows()), but only as it applies to an ADO Recordset. Although there are similarities in the 2 methodologies, the ADO Method offers 2 more Optional Arguments, is a little more complex, and of course, the syntax is different in creating the Recordset. The differences will be noted here along with some similarities, if you wish to see a General Overview of GetRows(), please reference the previous Tip (#49).

[SYNTAX OF ADO GETROWS() VERSION]
  • array = Recordset.GetRows(Rows, Start, Fields)
    • Rows - (Optional), indicates the number of Records to retrieve, and defaults to all Records.
    • Start - (Optional), a String or Variant that evaluates to the Bookmark for the Record from which the GetRows() operation should begin.
    • Fields - (Optional), a Variant that represents a single Field Name, Ordinal Field position, Array of Field Names, or an Array of Ordinal Field positions. Only the data in these Fields are returned by GetRows()
[CODE EXAMPLE]
Expand|Select|Wrap|Line Numbers
  1. Dim rstEmployees As ADODB.Recordset
  2. Dim varEmployees As Variant
  3. Dim intRowNum As Integer
  4. Dim intColNum As Integer
  5.  
  6. 'Make up of qryEmployees (5 Fields/9 Records) based on the
  7. 'sample Northwind.mdb Database
  8.   '[LastName] - Ascending
  9.   '[FirstName] - Ascending
  10.   '[Address]
  11.   '[City]
  12.   '[Region]
  13.  
  14. Set rstEmployees = New ADODB.Recordset
  15.  
  16. With rstEmployees
  17.   .Source = "qryEmployees"
  18.   .ActiveConnection = CurrentProject.Connection
  19.   .CursorType = adOpenKeyset
  20.   .LockType = adLockOptimistic
  21.     .Open
  22.       .MoveLast
  23.       .MoveFirst
  24. End With
  25.  
  26. 'Let's retrieve ALL Rows in the rstEmployees Recordset
  27. varEmployees = rstEmployees.GetRows(rstEmployees.RecordCount)
  28.  
  29. 'Demonstration of the Fields Parameter of GetRows()
  30.  
  31. 'Let's retrieve only the LastName Field in the rstEmployees Recordset
  32. 'varEmployees = rstEmployees.GetRows(rstEmployees.RecordCount, , "LastName")
  33.  
  34. 'Let's retrieve only the 3rd Field ([Address]) in the rstEmployees Recordset
  35. 'varEmployees = rstEmployees.GetRows(rstEmployees.RecordCount, , 2)
  36.  
  37. 'Let's retrieve the [Address], [City], and [Region Fields by passing an Array
  38. 'of these Field Names as the Fields Parameter
  39. 'Dim avarFieldNames
  40. 'avarFieldNames = Array("Address", "City", "Region")
  41. 'varEmployees = rstEmployees.GetRows(rstEmployees.RecordCount, , avarFieldNames)
  42.  
  43. 'Let's retrieve the [Address], [City], and [Region Fields by passing an Array
  44. 'of the Ordinal Positions of these Fields to the Fields Parameter
  45. 'Dim avarFieldNames(1 To 3) As Variant
  46. 'avarFieldNames(1) = 2
  47. 'avarFieldNames(2) = 3
  48. 'avarFieldNames(3) = 4
  49. 'varEmployees = rstEmployees.GetRows(rstEmployees.RecordCount, , avarFieldNames)
  50. '*****************************************************************
  51. 'Demonstration of the Bookmark Parameter of GetRows()
  52.  
  53. 'Retrieve only those Records from thew Current Bookmark on
  54. 'Dim varBkMrk As Variant
  55. 'rstEmployees.Find "[LastName]='King'"
  56. 'varBkMrk = rstEmployees.Bookmark
  57.  
  58. 'varEmployees = rstEmployees.GetRows(rstEmployees.RecordCount, varBkMrk)
  59.  
  60. '*****************************************************************
  61. 'Let's retrieve the first 6 Rows in the rstEmployees Recordset
  62. 'varEmployees = rstEmployees.GetRows(6)
  63.  
  64. 'If fewer than the desired number of Reows were returned
  65. If rstEmployees.RecordCount > UBound(varEmployees, 2) + 1 Then
  66.   MsgBox "Fewer Rows were returned than those requested"
  67. End If
  68.  
  69. '1st Row is the 0 Element of the Array, so we need the +1
  70. '2nd Subscript (2) identifies the Row Number
  71. Debug.Print "Number of Rows Retrieved: " & UBound(varEmployees, 2) + 1
  72.  
  73. Debug.Print
  74.  
  75. '1st Field is the 0 Element of the Array, so we need the +1
  76. '1st Subscript (1) identifies the Field
  77. Debug.Print "Number of Fields Retrieved: " & UBound(varEmployees, 1) + 1
  78.  
  79. Debug.Print
  80.  
  81. 'Let's retrieve the value of the 3rd Field ([Address]) in Row 5
  82. Debug.Print "Field 3 - Row 5: " & varEmployees(2, 4)
  83. 'Let's retrieve the value of the 1st Field ([LastName]) in Row 2
  84. Debug.Print "Field 1 - Row 2: " & varEmployees(0, 1)
  85.  
  86. Debug.Print
  87.  
  88. 'Debug.Print "******************************************"       'Column Format only
  89. Debug.Print "Last Name", "First Name", "Address", , "City", "Region"
  90. Debug.Print "---------------------------------------------------------------------------------------------"
  91. For intRowNum = 0 To UBound(varEmployees, 2)        'Loop thru each Row
  92.   For intColNum = 0 To UBound(varEmployees, 1)      'Loop thru each Column
  93.     'To Print Fields in Column Format with numbered Field and Row
  94.     'Debug.Print "Record#:" & intRowNum + 1 & "/Field#:" & intColNum + 1 & " ==> " & _
  95.                  'varEmployees(intColNum, intRowNum)
  96.     'To Print in Table Format, no numbered Fields or Rows
  97.     Debug.Print varEmployees(intColNum, intRowNum),
  98.   Next
  99.   Debug.Print vbCrLf
  100.   'Debug.Print "******************************************"     'Column Format only
  101. Next
  102.  
  103. rstEmployees.Close
  104. Set rstEmployees = Nothing
[NOTE]
In order to simplify matters for everyone, I've made the sample Database that I used to create both Tips #49 and #50, (DAO and ADO GetRows() Method), available as an Attachment for anyone who is interested to download.
Apr 17 '08 #1
3 43369
sal21
27 16bit
@ADezii
i friend i am very interesting to yuor code...please send me a copy of your project. gss.italyATiol.it
Many tks.
Sal
Jan 31 '09 #2
ADezii
8,834 Expert 8TB
@sal21
There is no Project to send. Everything you need codewise is in Post #9.
Feb 1 '09 #3
sal21
27 16bit
@ADezii
please link of post#9 i dont see that(!?);-(
Feb 1 '09 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: John M | last post by:
Hi, Having struggled to master (or at least get to use) recordsets, and so retrieve data without using a form, I'm stuck at a point which I feel ought to be easy. MsgBox Rs.Myfield (with...
5
by: aniket_sp | last post by:
i am using a data adapter and a dataset for filling and retrieving data into .mdb database. following is the code..... for the form load event Dim dc(0) As DataColumn Try If...
1
by: stjulian | last post by:
If inside a stored procedure, there a SELECT statement to return a recordset and another SELECT to set the value of an output parameter (as in SELECT @OutValue = Name FROM table WHERE pkid=5),...
0
by: Andy | last post by:
Hi All. I'm working for a company that has set out a guideline for retrieving data from a database. Nobody can explain to me the reason for the following. When retrieving a set of records...
3
by: Jakob Petersen | last post by:
Hi, I need to increase the speed when retrieving data from a hosted SQL Server into VBA. I'm using simple SELECT statements. How important is the speed of my Internet connection? (I have...
0
by: DC01 | last post by:
I have added a new measure successfully into the normal cube. I then add it to the virtual cube and reprocess all cubes. I can browse the normal cube successfully. Then when I try and browse the...
4
by: smartin | last post by:
Hi, I'm having problem retrieving data from an SQL stored procedure. I tried debugging but it wont give a the reason for the error. it just throws an exception after executing cmd.ExecuteNonQuery...
9
ADezii
by: ADezii | last post by:
One question which pops up frequently here at TheScripts is: 'How do I retrieve data from a Recordset once I've created it?' One very efficient, and not that often used approach, is the GetRows()...
3
by: Executable | last post by:
Hi everyone, I have a question. I am creating a dynamic report from a table and need to fetch all the data (values and column names) into an array so that I can manipulate the data. I know there...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.