From: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> --- dlls/odbc32/proxyodbc.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/dlls/odbc32/proxyodbc.c b/dlls/odbc32/proxyodbc.c index dbe080f424f..066e9c14064 100644 --- a/dlls/odbc32/proxyodbc.c +++ b/dlls/odbc32/proxyodbc.c @@ -4821,6 +4821,22 @@ static SQLRETURN col_attributes_win32_a( struct statement *stmt, SQLUSMALLINT co free( strW ); } } + + if (stmt->hdr.win32_funcs->SQLColAttribute) + FIXME("Use SQLColAttribute\n"); + + if (stmt->hdr.win32_funcs->SQLColAttributeW) + { + switch (field_id) + { + case SQL_COLUMN_UNSIGNED: + return stmt->hdr.win32_funcs->SQLColAttributeW( stmt->hdr.win32_handle, col, field_id, char_attrs, buflen, + retlen, num_attrs ); + default: + FIXME("Unsupported for field %d.\n", field_id); + } + } + return ret; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10539