I am using MCM's ADODB28DISP.INC, but now I need to support other things besides SELECTing, like INSERT INTO. I went back to the msado15.inc as seen at http://www.powerbasic.com/support/do...DO_Example.zip (albeit now regenerated for PB9 use).
I got an error for a duplicate equate when trying to combine the files.
$CLSID_ADODB_Connection = GUID$("{00000514-0000-0010-8000-00AA006D2EA4}")
$CLSID_ADODB_Event_ConnectionEvents = GUID$("{5EF71E5E-C2CB-4D92-A15D-6ABBFABBB987}")
The different GUIDs make it plain I can't just delete one of those lines to resolve the duplicate problem. Will I need to build a .dll to isolate the msado15.inc code?
I got an error for a duplicate equate when trying to combine the files.
$CLSID_ADODB_Connection = GUID$("{00000514-0000-0010-8000-00AA006D2EA4}")
$CLSID_ADODB_Event_ConnectionEvents = GUID$("{5EF71E5E-C2CB-4D92-A15D-6ABBFABBB987}")
The different GUIDs make it plain I can't just delete one of those lines to resolve the duplicate problem. Will I need to build a .dll to isolate the msado15.inc code?
Comment