GetColumnDate Method

Description

Returns the data, converted to a date value, in a column of a row in the current result set.

Visual Basic

datColumnData = QueryResults.GetColumnDate (
[Row :=] lRow,
[Column :=] lColumn )

C++

HRESULT pQueryResults->GetColumnDate (
long
lRow,
long
lColumn,
LPSYSTEMTIME
pdatColumnData );

Elements


Element Type Description

datColumnData Date Returned column data
lRow Long Row number of the current results set
lColumn Long Column number of the specified row

Remarks

In Visual Basic, the returned column data is a Date variable. In C++, the returned column data is a SYSTEMTIME variable that is filled with the datetime data.