Populating a RecodSet from an Array

Manuel Cavero

New Member
Joined
Feb 17, 2018
Messages
26
Good morning/afternoon everyone:

I'm trying to update a table in a Excel's workbook using ADO. Few things before the code:

  1. I have to say that I checked the property RecordSet.Status for the AddNew method and the boolean given it is true.
  2. I'm using a Microsoft.ACE.OLEDB.12.0 driver.
  3. The data is in a variant array callled Temp. This array has 6 columns -the same quantity as names has- and 200 rows.

Let's have a look into the code:

Code:
Sub TEST(Temp() as Variant)
Dim Connection as String
Dim Names as Variant
Dim Query as String
Dim RS as New.ADODB.RecordSet
Names = Array("FE", "HO", "AP", "MAX", "MIN", "CIE")

'Open the recordset in a read/write mode
RS.Open Query, Connection, adOpenDynamic, adLockOptimistic
RS.MoveLast
RS.AddNew Names, Temp 'Here I tried to populate the recordset from the array values 
RS.Update
RS.Close

I'm using this method because I think is quicker and simpler, but I got an error on line RS.AddNew, any ideas/suggestions, etc...?

Many thanks to you all
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple

Forum statistics

Threads
1,216,160
Messages
6,129,215
Members
449,494
Latest member
pmantey13

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top