ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE


  • How to use <Connection variable>.ConnectionQuality?
  • Quality level of connection
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
<Connection variable>.ConnectionQuality (Function)
In french: <Variable Connexion>.QualitéConnexion
HFSQL Client/ServerAvailable only with this kind of connection
Returns the quality level of connection: the higher the level is, the faster the connection will be.
Example
// Checks the quality of connection
// Connection1 is a connection with compression
// Connection2 is a connection without compression
Connection1 is Connection
Connection2 is Connection
 
Result1 is int = Connection1.ConnectionQuality()
Result2 is int = Connection2.ConnectionQuality()
IF Result1 > Result2 THEN
Trace("The best connection is Connection1")
ELSE
Trace("The best connection is Connection2")
END
Syntax
<Result> = <Connection>.ConnectionQuality()
<Result>: Integer
Quality level of connection. The higher the level is, the faster the connection will be.
<Connection>: Connection variable
Name of the Connection variable that describes the connection to test.
Remarks

How to use <Connection variable>.ConnectionQuality?

<Connection variable>.ConnectionQuality can be used with compressed frames.
When should I compress network frames?
The choice must be based on 3 parameters:
  • the speed of the network used,
  • the CPU performance of the client computers
  • the type of the transmitted data.
The importance of each parameter depends on the two other ones so no standard formula is available. However, here are some tips to help you choose:
  • If the speed of the network used is greater than 10 Mbits/second, there is no need to compress the frames.
  • If the network used (GRPS, EDGE or 3G type) is invoiced according to the amount of transmitted data, we advise you to compress the frames in order to reduce the cost.
  • If an important amount of data (binary memo) is transmitted (images, video, zip sound, etc.), the compression of frames will be useless.
  • In all the other cases:
    • on client computers equipped with high-performance processors and if text or text memo data is used by your application, it may be interesting to compress the frames.
    • on client computers equipped with low-performance processors, it may be very interesting to compress the frames if the transfer rate is quite slow.
    It may be interesting to perform comparative measurements by using the performance analyzer.
<Connection variable>.ConnectionQuality can be used to compare the performance of a compressed and an uncompressed connection.

Quality level of connection

The quality level of the connection depends on several aspects, for example:
  • The CPU workload of the client and server.
  • The use of network resources by other programs.
  • The workload on the network devices (switch, router, etc.).
Component: wd280hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment