Beginning ADO

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Beginning ADO

ConsideredOpinion
I am trying to figure how to use ADO in Dolphin 6. It appears it is set
up to use ADO 2.5, and I have version 2.7

I get a walkback with:
rtConn := ADODBConnection15 new.
(Class not registered)
So I assume it is the ADO version? How do I fix this (short of
installing 2.5)?

Thanks


Reply | Threaded
Open this post in threaded view
|

Re: Beginning ADO

Stefan Schmiedl
Try the ActiveXComponent Wizard in the Additional Tools Folder.
I use a "throwaway" image set (.img, .chg, .sml) for this, to keep the
important changelog in my development image clean.


Reply | Threaded
Open this post in threaded view
|

Re: Beginning ADO

John Rubier
In reply to this post by ConsideredOpinion
Use ADODB_Connection instead. (and ADBDB_Command, ADODB_Recordset etc)
instead of the classes with numbers. Those are subclasses where they ad
new functionality for the different ADO version.

John