I am attempting to generate an ADO RecordSet programatically within .Net. This will be passed on to existing legacy code in VB6 which is already expecting a ADO RecordSet, I do not wish to change the existing code.
I was successful in defining fields within a new RecordSet
ADODB.Recordset rs = new Recordset();
rs.Fields.Append("Height", DataTypeEnum.adInteger, 4, FieldAttributeEnum.adFldMayBeNull, null);
within VB6 I can add records after calling Open on the RecordSet with no parameters:
rs.Open
when I try to call AddNew with in .net code it tells me the recordset must be open, and I can't call open because it is expecting the following parameters:
void Open(object Source, object ActiveConnection, CursorTypeEnum CursorType, LockTypeEnum LockType, int Options);
but I am attempting to load the RecordSet programatically and do not have any active connection or other datasource.
What am I missing? Is there a better way?