This will make a new table from another tablestructure
strSql = "SELECT * INTO " & strDivName & " FROM " & "Template"
'Create a table from the template
db.Execute strSql
'If this is not what you are looking for then then is a DAO method in the FAQ
I have always used DAO for this task but I need to use ADO here.
I wat to select files from one table and insert them into an empty table. I understand the DAO Execute method syntax doesn't work but dont know he ADO method.
Hi,
Using Jet4 and a table I use for one of my programs I tried this syntax to retrieve records it was successful with no errors. This uses an old style DAO database
Set rs = db.OpenRecordset("Select * From [MatchTable] Where [DatePlayed] = #10/8/2000 12:01:40 AM#", dbOpenDynaset)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.