The information in this article applies to:
DB-Library Update version 4.20.50 FIXLIST The following list of problems, and various other improvements that were discovered during internal testing, have been fixed in DB-Library version 4.2.5. For more information, please contact your primary support provider. Please note that workarounds have been provided for your information only. It is not necessary to implement these workarounds if you have the updated software. FIX: dbopen Trap Locks Up Windows in Debugging ModeBUG# PRSQL9209030SYMPTOMS
When a call to the dbopen function fails due to a bad login ID and
the application is being run from Microsoft QuickC for Windows,
QuickC for Windows traps the error. However, if Windows is in
debugging mode while the application is being run, Windows will
lock up.
WORKAROUNDDuring the debugging phase of development of a Windows DB-Library (dblib) application, avoid issuing a dbopen function with an invalid login ID.FIX: Keyset-Driven Cursors Cannot Be Opened in MS-DOSBUG: 7343 SYMPTOMSA call to the dbcursoropen() function for a keyset-driven cursor under MS-DOS will fail, with the application's message handler reporting that the DBPROCESS is dead. The keyset cursor will fail to open under all concurrency options available to cursors, namely CUR_READONLY, CUR_LOCKCC, CUR_OPTCC, CUR_OPTCCVAL. Even a results set returning as few as 50 rows cannot be handled.CAUSEThe dbcursoropen() function attempts to allocate memory to hold the keyset. It fails when it tries to allocate the hard-coded 65,532 bytes of memory. DB-LIBRARY (db-lib) immediately marks the DBPROCESS as dead for this failure to allocate memory. The application's message handler is then called, which reports that the DBPROCESS is dead.WORKAROUNDIf cursors need to be used under MS-DOS, use dynamic cursors or mixed cursors instead of keyset-driven cursors.FIX: dbreadtext() May Not Read Data in Large ChunksPROBLEM ID: 8216SYMPTOMSThe DB-LIBRARY (db-lib) dbreadtext() function returns successfully on reading image/text data, but no data is retrieved into the application-defined buffer.CAUSEWhen reading text/image data in chunks of 32K or greater, db-lib incorrectly fails to copy the data into the application-defined buffer. Note that this problem arises only when, for instance, a 48K text/image data value is read in 33K chunks using dbreadtext().WORKAROUNDFor image/text data that is larger than 32K, read the data in smaller chunks (each chunk being smaller than 32K) using the dbreadtext() function. In other words, application programmers must make sure the "bufsize" parameter in the dbreadtext() call is set to less than 32K.For text/image data that is greater than 32K and less than 64K, if all the data needs to be retrieved in one step, use a SELECT statement to retrieve the data. Note that DBTEXTSIZE and DBTEXTLIMIT options must be set appropriately. Another workaround is to use the Transact-SQL readtext() function. FIX: commit_xact in Windows Returns FAILPROBLEM ID: BUG# 7824SYMPTOMSIn a Windows DB-LIBRARY (db-lib) program, the commit_xact function returns FAIL when it should return SUCCEED. Very rarely, commit_xact can return SUCCEED when it should return FAIL.CAUSEWindows db-lib incorrectly miscasts a far pointer into a near pointer, causing commit_xact to return an incorrect value. This incorrect return value is usually FAIL, though it may be SUCCEED.FIX: dbcursoropen Can GP Fault with Certain SELECTsProblem ID: Bug#8375SYMPTOMSThe dbcursoropen function can GP fault when the SELECT statement contains a HAVING, GROUP BY or ORDER BY clause.CAUSEDB-Library attempts to read too much memory when parsing the SELECT statement. If it reads off the end of a segment, a GP fault will occur. This is more likely to occur when the FROM or WHERE clause is significantly longer in than the HAVING, GROUP BY or ORDER BY clause.FIX: Keyset dbcursorfetch of SELECT that Returns No RowsProblem ID: Bug#8517SYMPTOMSThe first call to the dbcursorfetch function sets only the FTC_ENDOFKEYSET flag in pstat[0].CAUSEWhen the SELECT statement used to open a keyset driven cursor returns no rows, DB-Library fails to set the FTC_ENDOFRESULTS flag in pstat[0].FIX: Incorrect dbrpcparam() Function PrototypeProblem ID: Bug#8400SYMPTOMSThe dbrpcparam() function prototype in the DBMSWIN section of SQLDB.H incorrectly lists "DBPROCESS*" as the first parameter. This parameter should be "DBPROCESS NEAR *".WORKAROUNDIn the DBMSWIN section of SQLDB.H, change the following line (line 505 in the SQLDB.H file dated 9/15/92) from:
to the following:
FIX: dbwinexit After dbinit Causes ErrorPROBLEM ID: BUG# 7855SYMPTOMSRunning debug Windows 3.1, calling dbwinexit generates the following debug Windows error:
CAUSEDB-LIBRARY (db-lib) does not properly handle calling dbwinexit immediately after dbinit. Note that this error occurs only in debug Windows 3.1, not in retail Windows 3.1.WORKAROUNDUse the Windows SDK tool DBWIN to set the "Don't Break on Fatal" option in debug Windows 3.1.FIX: bcp_collen Can Cause Error 10066 During bcp_moretextProblem ID: Bug#8897SYMPTOMSCalling bcp_moretext results in DB-LIBRARY (db-lib) in the following error message (error 10066):
CAUSEDB-LIBRARY incorrectly handles bulk copy (BCP) text and image data transfer when bcp_collen is called with a varlen parameter greater than 65535.WORKAROUNDUse bcp_bind to adjust the varlen parameter of text and image columns.FIX: Cursor Functions Generate Error in Debug Windows 3.1Problem ID: Bug#9000SYMPTOMSUsing DB-Library cursors in debug Windows 3.1 generates the following error:
CAUSEDB-Library incorrectly calls GlobalUnwire under certain circumstances when using cursor functions like dbcursoropen and dbcursorclose.WORKAROUNDStart the DBWIN application that comes with debug Windows 3.1, choose the Settings command from the Options menu, and check the "Don't Break on Errors" options. This will avoid the FatalExit prompt.FIX: Incorrect dbcursoropen Function PrototypeProblem ID: Bug#8386SYMPTOMSThe dbcursoropen function prototype in the DBMSWIN section of SQLDB.H incorrectly lists "DBPROCESS *" as the return value. This return value should be "DBPROCESS NEAR *".WORKAROUNDIn the DBMSWIN section of SQLDB.H, change the following line (line 592 in the SQLDB.H file dated 9/15/92) from:
to the following:
FIX: dbcancel Returns FAIL During dbreadtext OperationsProblem ID: Bug#8675SYMPTOMSThe dbcancel function returns FAIL when called during dbreadtext operations. This can cause DB-Library error 10038 "Attempt to initiate a new SQL Server operation with results pending" when a new command is later executed on the same connection.CAUSEWhen dbcancel is called after dbreadtext returns a positive value N indicating that N bytes were read, DB-Library incorrectly fails to cancel the command batch.WORKAROUNDCall dbreadtext until it returns 0, indicating an end of row condition, or NO_MORE_ROWS. Then call dbcancel to cancel the command batch.FIX: dbopen Generates Error in Debug Windows 3.1Problem ID: Bug#8399SYMPTOMSMaking a connection to SQL Server in debug Windows 3.1 generates the following error:
CAUSEWhen dbopen is called, DB-Library incorrectly attempts to free a NULL memory handle.WORKAROUNDStart the DBWIN application that comes with debug Windows 3.1, choose the Settings command from the Options menu, and check the "Don't Break on Errors" options. This will avoid the FatalExit prompt.FIX: bcp_sendrow Incorrectly Handles NULL ValuesPROBLEM ID: Bug#8586SYMPTOMSbcp_sendrow does not fail when an attempt is made to insert NULL values in columns of a table that do not allow nulls. In the case of variable length datatypes columns, such as VARCHAR and VARBINARY, NULLs are inserted whereas other datatypes may contain 0 or an empty string.Consider the following table:
then the bcp_bind call specifies a NULL data value by setting varlen parameter to 0:
followed by
which does not fail and inserts NULLs for variable length columns and 0 or empty string for other datatypes in the table. FIX: Browse Mode Update with a Datetime Index on the TablePROBLEM ID: Bug#8633SYMPTOMSWhen attempting to update a table with unique clustered index on a datetime field from a browse mode DB-Library program, the update does not fail but some rows are not updated. This happens only for those rows that have non-zero seconds and milliseconds parts in the datetime column.CAUSEThe dbqual() function does not generate the correct 'where' clause on a table with datetime column in the unique index where the datetime values have a non-zero seconds and milliseconds part. The string comparison for the datetime column does not contain the seconds and milliseconds part.For example, consider the table
Then the string comparison generated by dbqual() function is (c1='May 1 1993 1:30PM'). This should be generated instead as (c1='May 1 1993 1:30:10:10PM'). WORKAROUNDPerform non-browse mode update for rows which are failing. If possible, drop index on datetime and create it on another unique field in the table. If the seconds and milliseconds parts are not important, you can also make them zero in the datetime values entered by enforcing this either in the front end application or by putting an insert/update trigger on the table.NEW NET-LIBRARY ERROR REPORTING The new Net-Library files have enhanced run-time error reporting. If a network or operating system error is encountered during run-time, the Net-Library will pass the network or operating system error code back to the application's DB-Library error handler. The network or operating system errors reported by the Net-Library will usually have the following format
where <net/os error code> Is the error code returned by the <net/os function> during run-time. The meaning of this error code is dependent on the <net/os function> that returned this error code, and the Net-Library in use at the time the error occurred. Please examine your network or operating system documentation for complete information about this error code. <Net-Library function> Is the Net-Library function that was in use when the run-time error occurred. <net/os function> Is the network or operating system function that returned the error code. Please examine your network or operating system documentation for complete information. To properly distinguish DB-Library, Net-Library and operating system errors, a DB-Library application should have an error handler similar to the following
For example, if the following error occurred while using the named pipe Net-Library on a LAN Manager - based network
This would mean that LAN Manager error 53 occurred when the named pipe Net-Library function ConnectionRead called the network read() function. The meaning of LAN Manager error 53 can be determined by examining the LAN Manager documentation, or typing NET HELPMSG 53 at the command prompt. This returns
OPERATING SYSTEM ERROR DOCUMENTATION For a 16-bit MS-DOS or Windows DB-Library client, the operating system errors are standard MS-DOS extended error and are documented in the "Microsoft MS-DOS Programmer's Reference" (ISBN 1-55615-329-5) in Appendix C on pages 447 - 449, "The Programmer's PC Sourcebook" by Thom Hogan (second edition, ISBN 1-55615-321-X) on pages 3-123 - 3-124, also "Advanced MS-DOS Programming" by Ray Duncan (second edition, ISBN 1- 55615-157-8) on pages 453 - 455 and in "The MS-DOS Encyclopedia" (ISBN 1-55615-174-8) in Appendix C on pages 1461 - 1462. They are the same codes returned by Microsoft C run-time function _dosexterr(), and also MS-DOS Int 21 Function 59H. For a 16-bit OS/2 DB-Library client, the operating system errors are standard OS/2 errors (many are in common with the MS-DOS errors) and are documented in the "Microsoft OS/2 Programmer's Reference" Volume 3 (ISBN 1-55615-222-1) in Appendix A on pages 409 - 413, and also in "Essential OS/2 Functions" by Ray Duncan (ISBN 1-55615-177-2) on pages 193 - 203. For a 32-bit Windows NT DB-Library client, the operating system errors are standard Windows NT errors (many are in common with the MS-DOS errors) and are documented in the "Microsoft Win32 Programmer's Reference" Volume 2 (ISBN 1-55615-516-6) in Appendix A on pages 819 - 869. They are the same codes returned by Win32 function GetLastError(). NEW DB-LIBRARY FUNCTION DB-Library for Windows, MS-DOS and OS/2 includes a new function, dbserverenum. Using the dbserverenum function, you can obtain the names of servers to which you can connect. The dbserverenum function can search for the names of SQL Servers either locally or over the network. For network searches, the Net-Library DLL used must support the dbserverenum function. A Net-Library DLL registers and finds servers on networks for a specific network environment such as Microsoft LAN Manager - based networks. SyntaxThe dbserverenum function has the following syntax:
where searchmode Defines whether the dbserverenum function checks for server names locally, on the network, or both. servnamebuf Is a pointer to a buffer that stores the server names returned by a search. When the dbserverenum function successfully returns a list of server names, the servnamebuf buffer contains the server names separated by null characters. The end of the list is designated by two consecutive null characters. Only complete server names are copied to the buffer. When a buffer is full and there are additional names that could not be copied to the buffer, dbserverenum returns the value MORE_DATA. Server names are returned in non-sorted order; names found using the LOC_SEARCH constant are returned before those names found using the NET_SEARCH constant. Note that dbserverenum can return server names even when SQL Server is not running. Therefore, although a server name is returned in the list of servers, it does not guarantee that you can access the server. sizeservnamebuf Specifies the size of the buffer for the server names returned by a successful search. The buffer size limits the maximum number of names that dbserverenum can return in a single call. numentries Returns the number of server names copied to the buffer by the current call to dbserverenum. ReturnsThe dbserverenum function returns one or more of the following status code constants:ENUM_SUCCESS (0x0000) Indicates that the search to detect server names succeeded. ENUM_SUCCESS can be returned even when no servers are detected (when numentries = 0). MORE_DATA (0x0001) Indicates that DB Library has enough memory to service the dbserverenum request but the buffer passed to dbserverenum is not large enough to hold all the names returned. Increasing the size of sizeservnamebuf enables the buffer to hold more server names. NET_NOT_AVAILABLE (0x0002) Indicates that the Net-Library DLL is unavailable. A Net-Library DLL might be unavailable because no DLL is found or because the available Net-Library DLL does not support the dbserverenum function. When the searchmode parameter includes the NET_SEARCH mode, dbserverenum calls the default Net-Library DLL. When searchmode includes both the NET_SEARCH and LOC_SEARCH modes (NET_SEARCH | LOC_SEARCH), dbserverenum can return both MORE_DATA and NET_NOT_AVAILABLE (MORE_DATA | NET_NOT_AVAILABLE). OUT_OF_MEMORY (0x0004) Indicates that DB Library cannot allocate enough memory to service the dbserverenum request. NOT_SUPPORTED (0x0008) Indicates that the capability is not supported by the current Net-Library version or the current server platform. ENUM_INVALID_PARAM (0x0010) Indicates that an invalid parameter, such as a null pointer, was passed to the function. RemarksWhen the search mode is set to NET_SEARCH, dbserverenum calls the default Net-Library DLL (for example, named pipes or Novell* IPX/SPX). Because only one Net-Library DLL can be the default, those servers discernible to the specific server are enumerated using the NET_SEARCH parameter. You must add a specific server entry in the .INI file (Windows and OS/2) to use a Net-Library DLL other than the default Net-Library DLL. Servers listed in the .INI file (Windows and OS/2) are enumerated when the search mode is set to LOC_SEARCH.Additional query words: dblib
Keywords : SSrvDB_Lib SSrvGen |
Last Reviewed: March 17, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |