Module: wine Branch: master Commit: 54aea36777b952fed8f43f2ad1426aa235ada14f URL: https://gitlab.winehq.org/wine/wine/-/commit/54aea36777b952fed8f43f2ad1426aa...
Author: Hans Leidekker hans@codeweavers.com Date: Wed Jul 10 12:50:02 2024 +0200
odbc32: Default to ODBC version 2.
---
dlls/odbc32/proxyodbc.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/odbc32/proxyodbc.c b/dlls/odbc32/proxyodbc.c index 5dc8e8649ce..925abcfc063 100644 --- a/dlls/odbc32/proxyodbc.c +++ b/dlls/odbc32/proxyodbc.c @@ -385,6 +385,7 @@ static struct handle *create_handle( struct handle *parent ) struct handle *ret; if (!(ret = calloc( 1, sizeof(*ret) ))) return NULL; ret->parent = parent; + ret->env_attr_version = SQL_OV_ODBC2; ret->row_count = 1; return ret; }