How to add new records to a new & empty ADODB.Recordset manually?
Right now, here\'s what I\'m doing that isn\'t working:
Dim rs as ADODB.Records
With an open connection Conn:
sSql="INSERT into mytable (somefieldname, anotherfieldname) values ('Somevalue','Anothervalue')" Conn.Execute sSql