mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
88e86a23c0
Fixes: https://bugs.winehq.org/show_bug.cgi?id=56786 Add support for "Driver=" argument in connection string.
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From e74193b1a57027b193e190fa41c5b85eee39e1b8 Mon Sep 17 00:00:00 2001
|
|
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
|
Date: Wed, 8 Feb 2023 09:03:40 +1100
|
|
Subject: [PATCH] odbc32: Pass ODBC version when creating driver environment
|
|
|
|
---
|
|
dlls/odbc32/proxyodbc.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/dlls/odbc32/proxyodbc.c b/dlls/odbc32/proxyodbc.c
|
|
index 901e2dca006..35ff5b7fc35 100644
|
|
--- a/dlls/odbc32/proxyodbc.c
|
|
+++ b/dlls/odbc32/proxyodbc.c
|
|
@@ -2546,6 +2546,11 @@ SQLRETURN WINAPI SQLDriverConnectW(SQLHDBC ConnectionHandle, SQLHWND WindowHandl
|
|
if (connection->pSQLAllocHandle)
|
|
{
|
|
connection->pSQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &connection->driver_env);
|
|
+
|
|
+ if (connection->pSQLSetEnvAttr)
|
|
+ connection->pSQLSetEnvAttr(connection->driver_env, SQL_ATTR_ODBC_VERSION,
|
|
+ (SQLPOINTER)connection->environment->version, 0);
|
|
+
|
|
connection->pSQLAllocHandle(SQL_HANDLE_DBC, connection->driver_env, &connection->driver_hdbc);
|
|
}
|
|
else if(connection->pSQLAllocConnect && connection->pSQLAllocEnv)
|
|
--
|
|
2.43.0
|
|
|