PRB: Exception Error When Using ODBC to SQL Server via TCP/IP

Last reviewed: February 4, 1998
Article ID: Q135874
3.00 1.30 WINDOWS kbinterop kbprb

The information in this article applies to:

  • Microsoft Visual FoxPro for Windows, version 3.0
  • Microsoft Win32s version 1.30

SYMPTOMS

When creating a remote view to a SQL server using TCP/IP sockets installed with the SQL Server Client Software version 4.21a, the following occurs:

  • A Win32s error is displayed.

    -or-

  • The product shuts down without any error message.

This occurs with TCP/IP sockets or IPX/SPX. It does not happen with named pipes.

CAUSE

When Visual FoxPro connects to a data source and sends data, it uses a 4K packet size by default. This default packet size causes errors when using TCP/IP with SQL Server and ODBC. The ODBC default is usually 512 bytes.

WORKAROUND

To work around this behavior, modify the default packet size that Visual FoxPro uses. You can achieve this by creating a connection, changing the PacketSize property of the connection, and creating the remote view against the connection.

The following procedure explains how to get a connection and modify its attributes:

  1. Open a database. To create a connection, click New and then Connection on the File menu. This opens the Connection Designer.

  2. Set the attributes for the connection, and save it as myconnection.

  3. In the Command window, type:

          =DBSETPROP('Myconnection','connection','PacketSize',512)
    

    This saves the PacketSize property in the database. If you want to modify the packet size for the current session only, use the SQLSETPROP() function as follows:

          =SQLSETPROP(0,'PacketSize',512)
    

STATUS

Microsoft is researching this behavior and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Install TCP/IP Protocol.

  2. Install the SQL Server 4.21a Client Software. (This is necessary in order to get the required dll - Dbmssoc3.dll.) Switch the Protocol from named pipes to TCP/IP.

  3. In the Autoexec.bat add C:\SQL and C:\SQL\BIN to the path. This step is necessary for the ODBC driver manager to find Dbmssoc3.dll. Without this added to the path, you will receive this error message:

    Driver unable to load communication module. Driver has not been correctly installed.

  4. Reboot.

  5. Start Windows and go into the ODBC Driver Manager. Configure the driver.

  6. Start Visual FoxPro, and create a database. In the database, create a Remote View based off FoxHole_tcp.

  7. Log in.

REFERENCES

A TCP/IP socket is an addressable point that consists of an IP address and a TCP or UPD port number. It provides applications access to TCP/IP protocols.

A Named pipe is a communication API that provides a software connection between a client and a server.

For more information about using TCP/IP named piped versus sockets, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q128985
   TITLE     : Comparing SNA Client TCP/IP Named Piped vs Sockets


Additional reference words: 3.00 VFoxWin TCPIP
KBCategory: kbinterop kbprb
KBSubcategory: FxinteropOdbc
Keywords : FxinteropOdbc kbinterop kbprb
Version : 3.00 1.30
Platform : WINDOWS


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 4, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.