Retrieve data from a column as an object

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

C#
public bool GetObject(
	string columnName,
	out Object result
)
Visual Basic
Public Function GetObject ( _
	columnName As String, _
	<OutAttribute> ByRef result As Object _
) As Boolean
Visual C++
public:
bool GetObject(
	String^ columnName, 
	[OutAttribute] Object^% result
)

Parameters

columnName
Type: System..::..String
Column name to retrieve data from
result
Type: System..::..Object%
Contains column data upon execution

Return Value

bool

See Also