gpt4 book ai didi

jdbc - 使用带有 JDBC 驱动程序的 ODBC 应用程序

转载 作者:行者123 更新时间:2023-12-01 23:26:16 25 4
gpt4 key购买 nike

我公司使用Vertica .我们有使用 pyodbc 连接到它的 Python 应用程序。我的大部分开发都是在 Mac (Snow Leopard) 上进行的,不幸的是,Vertica 尚未发布适用于 Mac 的 ODBC 驱动程序。不过,他们确实有 JDBC 驱动程序。我不认为在 Jython 中开发是一个好的折衷方案。有什么方法可以将 JDBC 驱动程序与 ODBC 应用程序一起使用?某种 ODBC 连接器?

最佳答案

编辑:vertica 5/6 的更新可以在这里找到https://github.com/serbaut/psycopg2

这是使 psycopg2 2.2.1 与 vertica 4.0 一起工作的补丁。不需要 ODBC。

diff --git a/psycopg/connection_int.c b/psycopg/connection_int.c
index 902fdbb..b07eee8 100644
--- a/psycopg/connection_int.c
+++ b/psycopg/connection_int.c
@@ -280,6 +280,10 @@ conn_setup(connectionObject *self, PGconn *pgconn)
pgres = psyco_exec_green(self, psyco_datestyle);
}

+ if (self->server_version == 0 && self->protocol == 3) { /* vertica */
+ self->encoding = strdup("UTF8");
+ self->isolation_level = 0;
+ } else {
if (pgres == NULL || PQresultStatus(pgres) != PGRES_COMMAND_OK ) {
PyErr_SetString(OperationalError, "can't set datestyle to ISO");
IFCLEARPGRES(pgres);
@@ -335,7 +339,7 @@ conn_setup(connectionObject *self, PGconn *pgconn)
return -1;
}
self->isolation_level = conn_get_isolation_level(pgres);
-
+ }
Py_UNBLOCK_THREADS;
pthread_mutex_unlock(&self->lock);
Py_END_ALLOW_THREADS;
diff --git a/psycopg/typecast_builtins.c b/psycopg/typecast_builtins.c
index e8e5a1a..45b9dbc 100644
--- a/psycopg/typecast_builtins.c
+++ b/psycopg/typecast_builtins.c
@@ -1,15 +1,15 @@
static long int typecast_NUMBER_types[] = {20, 23, 21, 701, 700, 1700, 0};
-static long int typecast_LONGINTEGER_types[] = {20, 0};
+static long int typecast_LONGINTEGER_types[] = {6, 20, 0};
static long int typecast_INTEGER_types[] = {23, 21, 0};
-static long int typecast_FLOAT_types[] = {701, 700, 0};
-static long int typecast_DECIMAL_types[] = {1700, 0};
-static long int typecast_UNICODE_types[] = {19, 18, 25, 1042, 1043, 0};
+static long int typecast_FLOAT_types[] = {7, 701, 700, 0};
+static long int typecast_DECIMAL_types[] = {16, 1700, 0};
+static long int typecast_UNICODE_types[] = {8, 9, 19, 18, 25, 1042, 1043, 0};
static long int typecast_STRING_types[] = {19, 18, 25, 1042, 1043, 0};
-static long int typecast_BOOLEAN_types[] = {16, 0};
-static long int typecast_DATETIME_types[] = {1114, 1184, 704, 1186, 0};
-static long int typecast_TIME_types[] = {1083, 1266, 0};
-static long int typecast_DATE_types[] = {1082, 0};
-static long int typecast_INTERVAL_types[] = {704, 1186, 0};
+static long int typecast_BOOLEAN_types[] = {5, 0};
+static long int typecast_DATETIME_types[] = {12, 13, 1114, 1184, 704, 1186, 0};
+static long int typecast_TIME_types[] = {11, 15, 1083, 1266, 0};
+static long int typecast_DATE_types[] = {10, 1082, 0};
+static long int typecast_INTERVAL_types[] = {14, 704, 1186, 0};
static long int typecast_BINARY_types[] = {17, 0};
static long int typecast_ROWID_types[] = {26, 0};
static long int typecast_LONGINTEGERARRAY_types[] = {1016, 0};

关于jdbc - 使用带有 JDBC 驱动程序的 ODBC 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2695684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com