Release manifest for MDAC 2.1 Service Pack 2 (2.1.2.4202.3) (842277)



The information in this article applies to:

  • Microsoft Data Access Components 2.1 SP2

SUMMARY

This article describes the release manifest of Microsoft Data Access Components (MDAC) 2.1 Service Pack 2 (SP2). This article includes the following information about the MDAC 2.1 Service Pack 2:

  • The frequently asked questions about MDAC 2.1 SP2.

  • The known issues with MDAC 2.1 SP2.

  • The significant fixes for MDAC 2.1 SP2.

  • The list of files that are included in MDAC 2.1 SP2 and the versions of these files.

INTRODUCTION

This release manifest applies to the Internet release of the first generally available (GA) version of MDAC 2.1 SP2 (2.1.2.4202.3). This release manifest lists frequently asked questions about MDAC 2.1 SP2 and describes known issues with MDAC 2.1 SP2. This release manifest lists all the files that are included in MDAC 2.1 SP2. This release manifest also lists the corresponding versions of these files.

For more information about installing, removing, upgrading, and downgrading MDAC releases, visit the following Microsoft Developer Network (MSDN) Web site:For more information about downloading MDAC releases, visit the following MSDN Web site:

MORE INFORMATION

Release version number

MDAC 2.1 SP2 (2.1.2.4202.3) (GA), July 1999

Release function

MDAC 2.1 SP2 (2.1.2.4202.3) includes Quick Fix Engineering (QFE) fixes and selective fixes that customers have requested.

Release ship vehicle

To download MDAC 2.1 SP2 (2.1.2.4202.3), visit the following MSDN Web site:

Localization information

MDAC 2.1 SP2 (2.1.2.4202.3) (GA) is available in US English.

New features

MDAC 2.1 SP2 (2.1.2.4202.3) (GA) is not a new feature release.

Known issue with MDAC 2.1.2.4202.3 (GA)

This release has a known issue with the Online Database Connectivity (ODBC) Jet driver in multithreaded environments. When any multithreaded environment or stress environment such as Microsoft Internet Information Services (IIS) is running, we recommend that you do not use ODBC because of issues with threading in the driver and in the Jet engine. In this situation, we recommend that you work with the OLE DB provider for Jet.

Significant fixes for MDAC 2.1 SP2 (2.1.2.4202.3) (GA)

The following significant fixes were implemented in this MDAC release:

General fixes

  • This MDAC release contains a fix in the Microsoft Visual FoxPro driver. This fix is not included in the release for Microsoft Office 2000.
  • This MDAC release contains fixes that are included in the Microsoft SQL Server driver and in the provider that is included in SQL Server 7.0 Service Pack 1 (SP1).
  • Many alignment faults in the Alpha (AXP) builds of MDAC 2.1.2.4202.3 (GA) have been detected and fixed.
  • This MDAC release contains a fix for an error that occurs in Microsoft Visual C++ 6.0. In Visual C++ 6.0, the Microsoft Foundation Classes (MFC) AppWizard application generates code. When you run this code, you may receive the following error message:
    Failed to open recordset.
    This problem occurs because of an error in the way that rows are fetched.

ADO

  • Active Server Pages (ASP) scripts return empty recordsets under stress.

    When ActiveX Data Objects (ADO) runs in an IIS environment under heavy stress, ADO may start to return empty recordsets to requests from the database. This is not a common problem because the problem rarely surfaces before four to 15 days have passed. The problem occurs because of memory fragmentation. When a certain threshold is reached, there is not sufficient memory to allocate for the row buffers. At this point, empty recordsets start to return.
  • Using multiple recordsets on a single command object may cause an application error.

    When an application that uses multiple recordsets on a single command object runs in a stress environment such as IIS, an application error may occur. This problem involves the persistence of the parameters collection on the command object and the time that the parameters collection should be persisted before the parameters collection is reused.

    For additional information, click the following article number to view the article in the Microsoft Knowledge Base:

    197449 Problems reusing ADO command object on multiple recordsets

RDS

  • Remote Data Services (RDS) role impersonation does not behave as expected.

    When Remote Data Services (RDS) is used to call a local or remote Component Object Model (COM) server, the server only recognizes the first caller to the object. If different clients make later calls to the object, the server only recognizes them as the initial caller.

Jet ODBC driver

  • A problem occurs when you try to delete rows.

    If a row is deleted from a database in an environment that uses the Jet ODBC driver, the Jet ODBC driver does not leave the application on the expected row. The application may be returned to the beginning of the table or may be moved to the next row. This behavior depends on the cursor options that are used.
  • The CREATE_DBV4 keyword has been added for the Jet ODBC driver.

    Version 4.0 of the Jet ODBC driver is included with MDAC 2.1. By default, with version 4.0 of the Jet ODBC driver, a version 4.0 database is created when you create a new database by using the CREATE_DB keyword. This causes problems for applications that expect a version 3.0 database to be created. Version 3.0 databases are created when you use version 3.5 of the Jet ODBC driver. Version 3.5 of the Jet ODBC driver is included with MDAC 2.0. With MDAC 2.1 SP2, developers can explicitly use the CREATE_DBV4 keyword to make sure that databases are created with the correct version.

Jet

  • A General Protection Fault (GPF) occurs when Jet parses a CHECK condition in a subquery, and the subquery contains a JOIN operator that joins the subquery to the copybuffer.

    The following code illustrates this problem:
    ALTER TABLE Orders
    		  ADD CONSTRAINT ValidCustId CHECK (custid = ANY (SELECT custid FROM
    		  EmptyCustomers AS c WHERE c.custid = Orders.custid))
    The query must contain the subquery that holds the JOIN operator.
  • An inconsistent result set is obtained when scrollable cursors and updateable cursors are passed to the index decimal column that is combined with a JOIN statement.

    The result set is not consistent when scrollable cursors or updateable cursors are passed on a JOIN statement of an indexed decimal column.
  • Backward compatibility with stored queries is broken in Jet 4.0. The stored queries behave as follows:
    • The {call QueryStar} stored query uses the LIKE operator with the asterisk character (*) and returns X rows.
    • The SELECT * FROM Table WHERE LIKE "M*" stored query runs as an SQL statement. The stored query returns zero rows because it uses ODBC behavior.
    • The {call QueryPerc} stored query uses the LIKE operator with the percent sign (%) and returns zero rows.
    • The SELECT * FROM Table WHERE LIKE "M%" stored query runs as an SQL statement and returns X rows.
  • GUID data type conversion corrupts data.

    When you insert data from one table in another table, data corruption may occur when all the following conditions are true:
    • You have two remote links, Table1 and Table2, to two Microsoft SQL Server tables.
    • Each table has a column type GUID.
    • The values that are inserted in Table2 are different from the values that already exist in Table2.
  • A #Deleted error occurs when you link to an Oracle table that contains numeric values.

    When an Oracle table is linked to Access, decimal values are incorrectly scaled, and data truncation occurs.
  • Access 2000 cannot open attached AS/400 tables.

    When you try to open an attached AS/400 table in Access datasheet view, you receive the following error message:
    Microsoft Access cannot open this table in datasheet view

File List for MDAC 2.1.2.4202.3 (GA)

File nameLong file nameVersion
12520437.cpx -n/a
12520850.cpx-n/a
Adcjavas.inc-n/a
Adcvbs.inc-n/a
Adoapt15.reg-n/a
Adofre15.reg-n/a
Adojavas.inc-n/a
Adomdrd.txtAdomdreadme.txtn/a
Adoreadm.txtAdoreadme.txtn/a
Adovbs.inc-n/a
Adoxrdme.txtAdoxreadme.txtn/a
Asycfilt.dll-2.40.4275.1
Cliconf.hlp-n/a
Cliconfg.DLL-1999.4.5.0
Cliconfg.exe-1999.4.5.0
Dbmsadsn.dll-1999.4.5.0
Dbmsrpcn.dll-1999.4.5.0
Dbmsshrn.dll-1999.4.5.0
Dbmssocn.dll-1999.4.5.0
Dbmsspxn.dll-1999.4.5.0
Dbmsvinn.dll-1999.4.5.0
Dbnmpntw.dll-1999.4.5.0
Drvvfp.cnt-n/a
Drvvfp.hlp-n/a
Ds16gt.dll-3.510.4202.0
Ds32gt.dll-3.510.4202.0
Expsrv.dll-6.0.0.8268
Handler.reg-n/a
Handsafe.reg-n/a
Handunsf.reg-n/a
Instcat.sql-n/a
Jroread.txtJroreadme.txt n/a
Makapt15.bat-n/a
Makfre15.bat-n/a
Mdac.cmd-n/a
Mdac21rd.txtMdacreadme.txtn/a
Msadce.dll-2.10.4202.1
Msadcer.dll-2.10.4202.1
Msadcf.dll-2.10.4202.1
Msadcfr.dll-2.10.4202.1
Msadco.dll-2.10.4202.1
Msadcor.dll-2.10.4202.1
Msadcs.dll-2.10.4202.2
Msadds.dll-2.10.4202.1
Msaddsr.dll-2.10.4202.1
Msader15.dll-2.10.4202.1
Msado15.dll-2.10.4202.1
Msado20.tlb-n/a
Msadomd.dll-2.10.4202.0
Msador15.dll-2.10.4202.1
Msadox.dll-2.10.4202.0
Msadrh15.dll-2.10.4202.1
Mscpxl32.dll-3.60.3.20
Msdadc.dll-2.10.4202.0
Msdaenum.dll-2.10.4202.0
Msdaer.dll-2.10.4202.0
Msdamg9x.dll-2.50.4202.0
Msdaora.dll-2.10.4202.0
Msdaosp.dll-2.10.4202.1
Msdaprsr.dll-2.10.4202.1
Msdaprst.dll-2.10.4202.1
Msdaps.dll-2.10.4202.0
Msdarem.dll-2.10.4202.1
Msdaremr.dll-2.10.4202.1
Msdasc.cnt-n/a
Msdasc.dll-2.10.4202.0
Msdasc.hlp-n/a
Msdasc.txtmsdasc.txtn/a
Msdasql.dll-2.10.4202.0
Msdasqlr.dll-2.10.4202.0
Msdatl2.dll-2.10.4202.0
Msdatsrc.tlb -n/a
Msdatt.dll -2.10.4202.0
Msdfmap.dll-2.10.4202.1
Msdfmap.ini-n/a
Msdsqlrm.txtMSDASQLreadme.txtn/a
Msexch40.dll-4.0.2927.2
Msexcl40.dll-4.0.2927.2
Msjet40.dll-4.0.2927.2
Msjeto~1.dllmsjetoledb40.dll4.0.2927.2
Msjint40.dll-4.0.2927.2
Msjro.dll-2.10.4202.0
Msjter40.dll-4.0.2927.2
Msjtes40.dll-4.0.2927.2
Msltus40.dll-4.0.2927.2
Msorcl32.cnt-n/a
Msorcl32.dll-2.573.4202.0
Msorcl32.hlp-n/a
Msorcrdm.txtMSOrclOLEDBreadme.txtn/a
Msorcrdm.txtMSOracle32Readme.txtn/a
Mspbde40.dll-4.0.2927.2
Msrclr40.dll-4.0.2927.2
Msrd2x40.dll-4.0.2927.2
Msrd3x40.dll-4.0.2927.2
Msrecr40.dll-4.0.2927.2
Msrepl40.dll-4.0.2927.2
Mstext40.dll-4.0.2927.2
Msvcirt.dll-6.0.8168.0
Msvcrt.dll-6.0.8397.0
Mswdat10.dll-4.0.2927.2
Mswstr10.dll-4.0.2927.2
Msxactps.dll-2.10.4202.0
Msxbde40.dll-4.0.2927.2
Mtxdm.dll -1997.11.532.0
Mtxoci.dll -1998.2.715.0
Odbc16gt.dll -3.510.4202.0
Odbc32.dll-3.510.4202.0
Odbc32gt.dll-3.510.4202.0
Odbcad32.exe-3.510.4202.0
Odbcbcp.dll-3.70.6.90
Odbccp32.cpl-3.510.4202.0
Odbccp32.dll-3.510.4202.0
Odbccr32.dll-3.510.4202.0
Odbccu32.dll-3.510.4202.0
Odbcinst.cnt-n/a
Odbcinst.hlp-n/a
Odbcint.dll-3.510.4202.0
Odbcjet.cnt-n/a
Odbcjet.hlp-n/a
Odbcji32.dll-4.0.4202.0
Odbcjt32.dll-4.0.4202.0
Odbctrac.dll-3.510.4202.0
Oddbse32.dll -4.0.4202.0
Odexl32.dll-4.0.4202.0
Odfox32.dll-4.0.4202.0
Odpdx32.dll-4.0.4202.0
Odtext32.dll-4.0.4202.0
Oleaut32.dll-2.40.4275.1
Oledb32.dll-2.10.4202.0
Oledb32r.dll-2.10.4202.0
Oledb32x.dll-2.10.4202.0
Olepro32.dll-5.0.4275.1
Sqloledb.dll-7.1.6.90
Sqloledb.txt-n/a
Sqlsodbc.hlp-n/a
Sqlsoldb.hlp-n/a
Sqlsrdme.txt-n/a
Sqlsrv32.dll-3.70.6.90
Sqlstr.dll-1999.4.5.0
Sqlwid.dll-1999.4.5.0
Sqlwoa.dll-1999.4.5.0
Stdole2.tlb-2.40.4275.1
Vbajet32.dll-6.0.1.8268
Vfpodbc.dll-6.0.8440.0
Vfpodbc.txt-n/a

REFERENCES

For more information, visit the following Microsoft Web site: For additional information, click the following article numbers to view the articles in the Microsoft Knowledge Base:

232053 List of files installed by MDAC 2.1 (GA)

232060 MDAC setup troubleshooting guide

For more information about product downloads and update downloads, visit the following MSDN Web site:

Modification Type:MajorLast Reviewed:6/30/2006
Keywords:kbService kbDLL kbLocalization kbUpgrade kbinfo KB842277 kbAudDeveloper