Retrieve data from a column as a short (Int16)

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

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

Parameters

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

Return Value

bool

See Also