DbNameToClientName

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalString DbNameToClientName( SalString sDbName )

The DbNameToClientName converts an object name from server name conventions to client framework name conventions.

Parameters

Name Description
SalString sDbName The object name in server name conventions.

Returns

The return value is object name with client framework name conventions.

Comments

This method works by converting the text to lowercase, removing all underscore (_) characters and converting the character after the underscore to uppercase. For example DbNameToClientName( 'ORDER_ITEM' ) -> 'OrderItem'.

Use method ClientNameToDbName to perform the reverse conversion.