问题描述
我想从.NET应用程序连接到Greenplum数据。 Greenplum的支持ODBC和OLEDB,但我不知道ConnectionString中,所有应如何。任何人可以帮助。
I am trying to connect to greenplum database from a .net application. Greenplum supports odbc and oledb, but i am not sure how the connectionstring and all should be. can anybody help.
在此先感谢。
推荐答案
假设你正在使用PostgreSQL的ODBC驱动程序(psqlODBC):
Assuming you're using the PostgreSQL ODBC Driver (psqlODBC):
Driver={PostgreSQL};Server=IP address;Port=5432;Database=mydb;Uid=uname;Pwd=passwd;
参见 http://connectionstrings.com/postgre-sql 。
免费的驱动程序,可以从 http://pgfoundry.org/projects/psqlodbc/ 下载。
The free driver can be downloaded from http://pgfoundry.org/projects/psqlodbc/.
如果你想有一个商业支持Greenplum的驱动程序试试 HTTP://www.datadirect .COM /产品/ ODBC / Greenplum的/ index.html的。
If you want a commercially supported Greenplum driver try http://www.datadirect.com/products/odbc/greenplum/index.html.
这篇关于连接到从净Greenplum数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!