May 29, 2026
2:02 p.m.
Piotr Caban (@piotr) commented about dlls/odbc32/proxyodbc.c:
break;
default: - FIXME( "unhandled attribute %d\n", Attribute ); - ret = SQL_ERROR; + if (Attribute >= SQL_CONNECT_OPT_DRVR_START) + ret = store_driver_attribute( con, Attribute, Value, StringLength );
It probably doesn't matter in practice but the function checks if attribute was already stored and updates old value if needed. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11024#note_141683