brCasing property

Sets or returns the case sensitivity flag.

Syntax

object.brCasing [= bValue]

Parameters

Parameter Description
object An object variable that represents an object in the Applies To list.
bValue The setting or return value is a Boolean data type that is True if case sensitive.

Remarks

  • Using an RPC connection, the flag is set on the client workstation.

  • Using an ODBC connection, the flag is set on the server

Example

Sub Main()
   Dim oEnv As New clsD3Environment
   Dim oConn1 As clsD3Connection
vDim oConn2 As clsD3Connection
 
   ' Environment settings.
   oEnv.brCurrency = "$"
   oEnv.brDecimal = "."
   oEnv.brGrouping = ","
   oEnv.brCasing= False
 
   ' oConn1 will inherit environment settings.
   Set oConn1 = oEnv.brOpenConnection("ODBC", "USproduction")
   Set oConn2 = oEnv.brOpenConnection("ODBC", "UKproduction")
 
   ' Customizing settings.
   oConn2.brCurrency = "L"
   oConn2.brDecimal = ","
   oConn2.brGrouping = "."
 
   ...
 
   ' Closing connections.
   oEnv.brCloseConnection oConn1
   oEnv.brCloseConnection oConn2
   Set oEnv = Nothing
End Sub

TCL reference

case