Changeset: 9eed5049e02a for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=9eed5049e02a
Modified Files:
clients/odbc/driver/SQLExtendedFetch.c
Branch: Oct2014
Log Message:
The RowStatusArray pointer in SQLExtendedFetch replace the *I*RD status ptr.
I think this fixes bug 3671.
diffs (19 lines):
diff --git a/clients/odbc/driver/SQLExtendedFetch.c
b/clients/odbc/driver/SQLExtendedFetch.c
--- a/clients/odbc/driver/SQLExtendedFetch.c
+++ b/clients/odbc/driver/SQLExtendedFetch.c
@@ -78,12 +78,12 @@ SQLExtendedFetch(SQLHSTMT StatementHandl
return SQL_ERROR;
}
- array_status_ptr = stmt->ApplRowDescr->sql_desc_array_status_ptr;
- stmt->ApplRowDescr->sql_desc_array_status_ptr = RowStatusArray;
+ array_status_ptr = stmt->ImplRowDescr->sql_desc_array_status_ptr;
+ stmt->ImplRowDescr->sql_desc_array_status_ptr = RowStatusArray;
rc = MNDBFetchScroll(stmt, FetchOrientation, FetchOffset);
- stmt->ApplRowDescr->sql_desc_array_status_ptr = array_status_ptr;
+ stmt->ImplRowDescr->sql_desc_array_status_ptr = array_status_ptr;
if (SQL_SUCCEEDED(rc) || rc == SQL_NO_DATA)
stmt->State = EXTENDEDFETCHED;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list