J
juvi
Hello,
Is it possible to run an INSERT INTO table command and pass over a recordset?
Now I must write all field-names:
INSERT INTO tbl_test([Field1], [Field2]......) VALUES ( .. rs ! Field1 .... )
this works fine but it is hard work if columns are deleted or added.
Something like the following would be nice if possible:
INSERT INTO tbl_test FROM rs??????
thank you in advance
juvi
Is it possible to run an INSERT INTO table command and pass over a recordset?
Now I must write all field-names:
INSERT INTO tbl_test([Field1], [Field2]......) VALUES ( .. rs ! Field1 .... )
this works fine but it is hard work if columns are deleted or added.
Something like the following would be nice if possible:
INSERT INTO tbl_test FROM rs??????
thank you in advance
juvi