There is no "bulk insert" functionality.
To insert these data you should open a recordset, use the .AddNew method, fill in the fields’ values and .Update the recordset.
An alternate way is to sumbit SQL against the DB for each element something like:
INSERT INTO <tableName> (Fld1, Fld2, Fldn
VALUES ( """ & Array(n)(0) & """, """ & Array(n)(1) & """, """ & Array(n)(n) & """"
|