11 2011 档案

摘要:SQL Server 2008 R2 各个版本支持的功能http://msdn.microsoft.com/zh-cn/library/cc645993.aspx 阅读全文
posted @ 2011-11-24 11:34 bule 阅读(258) 评论(0) 推荐(0)
摘要:public byte[] GetASCII(byte a) { byte b; byte[] bs = new byte[2]; b = (byte)(a & 0x0f); if (b < 10) bs[1] = (byte)(0x30 + b); else bs[1] = (byte)(0x37 + b); b = (byte)((a & 0xf0) >> 4); ... 阅读全文
posted @ 2011-11-16 11:42 bule 阅读(1740) 评论(0) 推荐(0)
摘要:需要添加2个dll文件:Mono.Security.dll; Npgsql.dll。例子大家自己参考一下: private void button1_Click(object sender, System.EventArgs e) { richTextBox1.Text = string.Format( "Server={0};Port={1};Userid={2};database=testdb;password={3};Protocol=3;SSL=false;Pooling=true;MinPoolSi... 阅读全文
posted @ 2011-11-01 11:05 bule 阅读(6551) 评论(1) 推荐(1)