Hi. I'm using the adapter in llbl v. 1.0.2005.1 and I'm struggling to figure out how to perform an insert using a sub query.
Is there a way to generate an insert statement like:
insert into tableA(field1, field2,field3)
select field1,field2,field3
from tableB
I would just perform this action using a sproc, but my application supports both Access and SQL server, so I'm limited to the capabilities of Access (I'm using Access 2003). Also, performance is an issue. The inserts will generally be at least 2000 records.
Any help would be greatly appreciated.
Thanks!