C#操作PostgreSQL演示代码片段
2018-07-20 来源:open-open
先到网上下载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()); }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
上一篇:c#实现人民币大小写转换的代码
下一篇:C#验证码识别类
最新资讯
热门推荐