Microsoft KB Archive/135874

From BetaArchive Wiki

Article ID: 135874

Article Last Modified on 3/1/2005



APPLIES TO

  • Microsoft Visual FoxPro 3.0 Standard Edition
  • Microsoft Visual FoxPro 6.0 Professional Edition
  • Microsoft Data Access Components 2.5



This article was previously published under Q135874

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.

RESOLUTION

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.

  1. Reboot.
  2. Start Windows and go into the ODBC Driver Manager. Configure the driver.
  1. Start Visual FoxPro, and create a database. In the database, create a Remote View based off FoxHole_tcp.
  2. 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:

128985 Comparing SNA Client TCP/IP Named Piped vs Sockets



Additional query words: VFoxWin TCPIP

Keywords: kbprb KB135874