通过代理连接到PostgreSQL

时间:2012-12-24 11:06:52

标签: c# database winforms npgsql

我通过PostgreSQL在我的C#Winform项目Npgsql中使用。我使用以下连接字符串将我的应用程序连接到PostgreSQL:

 String connstring = String.Format("Server={0};Port={1};" +
                    "User Id={2};Password={3};Database={4};",
                    "192.168.22.1", "5432", "postgres",
                    "password", "test" );

我想问一下,如果我在到达数据库之前应该通过xxx.xxx.xxx.xx代理IP,那么连接字符串的形式是什么?

0 个答案:

没有答案