I’m trying to find a way to browse a PostgreSQL database from the Visual Studio 2008 “Server Explorer” panel. I downloaded Npgsql but as I understand that’s only a library for the code itself, not the Server Explorer.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Npgsql is a .NET provider for PostgreSQL. Whether or not a given provider integrates with Server Explorer depends on whether it supports DDEX, which Npgsl as of now does not, but this support is planned for future versions.
However, if all you want to do is to be able to browse a PostgreSQL database in Server Explorer, you can do this by installing the psqlODBC, the PostgreSQL ODBC driver, and connecting via the .NET Framework Data Provider for ODBC.
alt text http://www.codingthewheel.com/image.axd?picture=postgre_sql_server_explorer.png
Also, I should mention that Npgsql DOES have some design-time integration with Visual Studio – for example you can use NpgsqlConnection objects from the toolbar and so forth.