Retrieve data from a column as a double

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

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

Parameters

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

Return Value

bool

See Also