Retrieve data from a column as a float

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

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

Parameters

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

Return Value

bool

See Also