FIX: SQLSetProp() Without Expression Does Not Restore Defaults

Last reviewed: February 20, 1997
Article ID: Q145846
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows versions 3.0, 3.0b

SYMPTOMS

Leaving off the optional [eExpression] in SQLSetProp() may not restore Visual FoxPro defaults for all SQL properties.

WORKAROUND

The values must be set manually, instead of relying on SQLSetProp() to restore the default values.

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0 for Windows.

MORE INFORMATION

The help file describes eExpression as "specifies the value for the setting you designate with cSetting. If you omit eExpression, the default value is restored for the setting."

However, the following properties are not restored to their default settings when leaving eExpression off:

   WaitTime - Resets to zero and default is 100
   Transactions - Gives error message "Property value is out of bounds"
   DispLogin - Gives error message "Property value is out of bounds"
   BatchMode - Resets to false (.F.)

Steps to Reproduce Problem

Type the following commands in the Command Window:

   x = SQLCONN()                  && You can use any data source.
   ?SQLGetProp(x,"WaitTime")      && Returns 100
   ?SQLSetProp(x,"WaitTime",200)  && Returns 1
   ?SQLGetProp(x,"WaitTime")      && Returns 200
   ?SQLSetProp(x,"WaitTime")      && Returns 1
   ?SQLGetProp(x,"WaitTime")      && Returns 0!
   ?SQLDisConn(x)

The last call to SQLGetProp() returns 0 when the default for WaitTime is 100.


KBCategory: kbprg kbbuglist kbfixlist
KBSubcategory: FxprgSql VFoxWin buglist3.00 buglist3.00b fixlist5.00
Additional reference words: 3.00 3.00b


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 20, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.