How to create an ACCESS table from a Recordset??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Folks

Can any one help me in letting know how i can create a access table programtically from a Recordset

Thanks in Advance
Dins
 
Can you create the table manually (using the normal user interface), then
add records to it from the recordset? If so, check out the AddNew and Update
methods & examples in online help.

If you have to create the table from VBA code, check out the CreateTableDef,
CreateFieldDef & related methods.

HTH,
TC


Dins said:
Folks,

Can any one help me in letting know how i can create a access table
programtically from a Recordset?
 
Back
Top