Great news! Yesterday I finally was able to make work a SQL INSERT statement to an Access FE temp table using an ADODB.Command object and using ADODB.Parameters objects to pass in the args to INSERT. Woo hoo!! 
The fourth arg to the CreateParameter call is a Size arg. I see various sites listing the allowable Type values. I can not find the Size suggestions for non variable size Types... like adBoolean as example... that has to be a specific size, but what is the correct number?!!?!?
So, I am thinking to share as an example in the Code Repository group as even in the Access 2007 Bible pub by Wiley Publishing there is no ADODB.Command example of an INSERT / UPDATE statement using ADODB.Parameters objects to pass in the values, rather all places lean towards using an ADODB.Recordset for that sort of operation.

The fourth arg to the CreateParameter call is a Size arg. I see various sites listing the allowable Type values. I can not find the Size suggestions for non variable size Types... like adBoolean as example... that has to be a specific size, but what is the correct number?!!?!?
So, I am thinking to share as an example in the Code Repository group as even in the Access 2007 Bible pub by Wiley Publishing there is no ADODB.Command example of an INSERT / UPDATE statement using ADODB.Parameters objects to pass in the values, rather all places lean towards using an ADODB.Recordset for that sort of operation.