11 2011 档案
摘要:SQL Server 2008 R2 各个版本支持的功能http://msdn.microsoft.com/zh-cn/library/cc645993.aspx
阅读全文
摘要: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); ...
阅读全文
摘要:需要添加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...
阅读全文
浙公网安备 33010602011771号