我正在尝试从.net应用程序连接到greenplum数据库。 Greenplum支持odbc和oledb,但我不确定connectionstring以及所有内容应该如何。谁能帮忙。

提前致谢。

最佳答案

假设您正在使用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

关于c# - 从.Net连接到GreenPlum数据库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12776885/

10-10 11:34