IGNITE-2242: fix for SQLGetData.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/4b25500a Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/4b25500a Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/4b25500a Branch: refs/heads/ignite-1786 Commit: 4b25500a2aca321e3e4c41ba9c99e1ab5b75e166 Parents: 0d47aa7 Author: isapego <[email protected]> Authored: Wed Jan 20 19:27:56 2016 +0300 Committer: isapego <[email protected]> Committed: Wed Jan 20 19:27:56 2016 +0300 ---------------------------------------------------------------------- modules/platforms/cpp/odbc/odbc-driver/src/odbc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/4b25500a/modules/platforms/cpp/odbc/odbc-driver/src/odbc.cpp ---------------------------------------------------------------------- diff --git a/modules/platforms/cpp/odbc/odbc-driver/src/odbc.cpp b/modules/platforms/cpp/odbc/odbc-driver/src/odbc.cpp index b9d6099..97b1569 100644 --- a/modules/platforms/cpp/odbc/odbc-driver/src/odbc.cpp +++ b/modules/platforms/cpp/odbc/odbc-driver/src/odbc.cpp @@ -1285,7 +1285,7 @@ SQLRETURN SQL_API SQLGetData(SQLHSTMT stmt, ApplicationDataBuffer dataBuffer(driverType, targetValue, bufferLength, strLengthOrIndicator); - //statement->GetColumnData(colNum, dataBuffer); + statement->GetColumnData(colNum, dataBuffer); return statement->GetDiagnosticRecords().GetReturnCode(); }
