[This is preliminary documentation and is subject to change.]

Replaces null with the value provided, ifthe object is null, then return the string s, otherwise return the integer value of the object.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static string ReplaceDBNull(
	Object o,
	string s
)
Visual Basic (Declaration)
Public Shared Function ReplaceDBNull ( _
	o As Object, _
	s As String _
) As String
Visual C++
public:
static String^ ReplaceDBNull(
	Object^ o, 
	String^ s
)

Parameters

o
Type: System..::.Object
The object to be tested
s
Type: System..::.String
The return value in case the first parameter is null

Return Value

See Also