CaseSensitive: Boolean;
The CaseSensitive property determines whether the case is taken into account on working with repository on the PostgreSQL server.
Available values:
True. Different case of repository name, identifiers of objects and their fields in DBMS will be taken into account on working with repository on the PostgreSQL server.
False. Repository name, identifiers of objects and their fields will be converted into lower case on working with repository on the PostgreSQL server during platform addressing to the server.
When one sets up a PostgreSQL server connection, case sensitivity can be determined in one of the ways:
Using the ISecurityPackageLogonData.ParamValue property, which uses the CASESENSITIVE parameter of security module and the True or False string value. The use of this case sensitivity selection method is given in the example for ISecurityPackageLogonData.ParamValue.
Using type conversion. The object that implements the ISecurityPackageLogonData interface is converted into the IPrimaryPostgresSPLD interface using the As operator, and the CaseSensitive property is used.
The property use is given in the example for IPrimaryPostgresSPLD.Database.
See also: