INET_PROTOCOL
database parameter
Description
Specifies the network protocol that the Informix client software
uses to communicate with a remote Informix database server.
Applies to
I10 Informix
IN9 Informix
Syntax
|
1 |
INET_PROTOCOL='network_protocol ' |
|
Parameter |
Description |
|---|---|
|
network_protocol |
A string that specifies the name of the network For |
Default value
By default, PowerBuilder uses the network protocol specified in
the HKEY_LOCAL_MACHINESOFTWAREInformixSqlHosts registry key.
Examples
Example 1
To specify that Informix client software uses the Novell IPX/SPX
network protocol:
-
Database profile
Type ipx in the Protocol Type box on the Network page in the
Database Profile Setup dialog box. -
Application
Type the following in code:
1SQLCA.DBParm="INET_PROTOCOL='ipx'"
Example 2
You can specify values for INET_DBPATH, INET_PROTOCOL, and
INET_SERVICE together. To specify that the directory /Informix contains
Informix databases, and that you want to connect using the turbo service
and the olsoctcp network protocol:
-
Database profile
Type /Informix in the Database Path box, turbo in the Service
Name box, and olsoctcp in the Protocol Type box on the Network page
in the Database Profile Setup dialog box. -
Application
Type the following on a single line in code:
1SQLCA.DBParm="INET_DBPATH='/Informix',INET_SERVICE='turbo',INET_PROTOCOL='olsoctcp'"
See also