MORE INFORMATION
Adoid.lib No Longer Exists (Visual C++ - Only)
With the release of the OLE DB 1.5 Software Development Kit (SDK),
Microsoft no longer provides the Adoid.lib file. Instead, to link to ADO
1.5, use the code snippet below. This code snippet assumes you are not
using #import or Microsoft Foundation Classes (MFC) OLE to link to ADO. If
you are using #import or MFC-OLE the #include to <initguid.h> is not
necessary.
#include <initguid.h> // Newly Required for ADO 1.5.
#include <adoid.h>
#include <adoint.h>
You must also remove linking to the Adoid.lib in your Project's Settings dialog box or you will continue to link to ADO 1.0. If you get the following error after you remove Adoid.lib, you must define INITGUID (using #define INITGUID) on the first line of your .cpp file:
LNK2001: unresolved external symbol _CLSID_CADORecordset
NOTE: You must install the OLE DB 1.5 Software Development Kit (SDK) to obtain the latest versions of Adoid.h and Adoint.h.
The OLE DB SDK version 1.5 released in January 1998 and is available at the following address:
You may also receive the following error if you build a project linking to
the 1.0 Adoid.lib and including the 1.5 Headers:
LNK2005: "xxx" already defined in "yyy" errors
- From the Projects menu, choose Settings, select the Link tab, and remove the reference to the Adoid.lib file.
- Create a new file in the project called Oleguids.cpp and add these
lines:
#include <initguid.h>
#include <adoid.h>
#include <adoint.h>
- Compile and Link.
The OLE DB 1.5 SDK does not remove Adoid.lib from the oledbsdk\lib
directory. You may want to physically delete it after installing the 1.5
SDK to ensure that no conflicts occur in the future.
Extra Argument in Connection.Open() Method (Visual C++ and Visual J++)
A new, reserved Options parameter was added to the Connection.Open()
method. You must use a value of -1 for this argument as shown in the following code snippets. Unlike other arguments for ActiveX Data Objects (ADO), the new Options argument does not have an enumerated type within the typelib to indicate valid values.
// VC using #import
Conn1->Open( bstrEmpty, bstrEmpty, bstrEmpty, -1 );
// VC using MFC OLE
Conn1.Open( strEmpty, strEmpty, strEmpty, -1 );
// VC Using OLE SDK
if( SUCCEEDED( hr ) )
hr = Conn1->Open( bstrEmpty, bstrEmpty, bstrEmpty, -1 );
// Java Code
conn1.Open("", "", "", -1);
If you use the incorrect value for this argument, the following error
occurs:
800A0BB9 or (adErrInvalidArgument = 3001)
The application is using arguments that are of the wrong type, are out of
acceptable range, or are in conflict with one another.
Extra Argument in Recordset.Requery() Method (Visual C++ and Visual J++)
As with the Connection.Open() method, the Recordset.Requery method now also
has a reserved parameter, whose value must be set to -1. Failure to do so
generates the same error listed above (0x800A0BB9).