brSystem method

Provides access to system variables based on the requested numeric argument.

Note: See the Remarks section for RPC and ODBC connection exceptions.

Syntax

sValue = object.brSystem( iNum)

Parameters

Parameter Description
sValue The return value is a String data type that is the status information returned.
object An object variable that represents a clsD3Connection object.
iNum A Long data type specifying the system variable number. See the D3 Reference Manual for information.

Remarks

  • Using an RPC connection, some system values are evaluated on the client.

  • Using an ODBC connection, the request is implemented on the server.

Example

Sub Main()
   Dim oEnv As New clsD3Environment
   Dim oConn As clsD3Connection
 
   Set oConn = oEnv.brOpenConnection("ODBC", "production”)
 
   MsgBox "System Identification: " & oConn.brSystem(100)
 
   oEnv.brCloseConnection oConn
   Set oEnv = Nothing
End Sub

FlashBASIC reference

system