I have one variable strsql declared as string
this is just like strsql= "select* from blabla....."&"b llalal"
I have another table tbl_temp which has all the fileds selected in strsql query
I want to move all the data into tbl_temp from strsql query
I am trying to do:--
DoCmd.RunSQL ("insert* into tbl_temp from strsql")
it gives rutime error 2757
There was a problem accessing a property or method of the
OLE object.
this is just like strsql= "select* from blabla....."&"b llalal"
I have another table tbl_temp which has all the fileds selected in strsql query
I want to move all the data into tbl_temp from strsql query
I am trying to do:--
DoCmd.RunSQL ("insert* into tbl_temp from strsql")
it gives rutime error 2757
There was a problem accessing a property or method of the
OLE object.
Comment