2

我正在尝试从 .net 应用程序连接到 greenplum 数据库。Greenplum 支持 odbc 和 oledb,但我不确定连接字符串和所有内容应该如何。任何人都可以帮忙。

提前致谢。

4

1 回答 1

1

假设您使用的是 PostgreSQL ODBC 驱动程序 (psqlODBC):

Driver={PostgreSQL};Server=IP address;Port=5432;Database=mydb;Uid=uname;Pwd=passwd;

请参阅 http://connectionstrings.com/postgre-sql

免费驱动程序可以从http://pgfoundry.org/projects/psqlodbc/下载。

如果您想要商业支持的 Greenplum 驱动程序,请尝试http://www.datadirect.com/products/odbc/greenplum/index.html

于 2012-11-08T16:43:12.423 回答