下面是编程之家 jb51.cc 通过网络收集整理的代码片段。
编程之家小编现在分享给大家,也给大家做个参考。
先到网上下载Postgresql.Data.PostgresqlClient.dll
然后添加引用,使用命名空间
然后添加引用,使用命名空间
using Postgresql.Data.PostgresqlClient; string connectString = @"Server=localhost;Database=postgres;User ID=arwen;Password=arwen"; PgConnection conn = new PgConnection(connectString); conn.open(); PgCommand cmd = conn.CreateCommand(); cmd.CommandText = "select * from test"; cmd.CommandType = CommandType.Text; using (PgDataReader reader = cmd.ExecuteReader()) { while (reader.Read()) Console.WriteLine(reader[0].ToString()); }
以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。