摘要:
1.获得列名 use database go select * from syscolumns where id=(select id from sysobjects where name='tablename') order by name 阅读全文
摘要:
1.获得列名 use database go select * from syscolumns where id=(select id from sysobjects where name='tablename') order by name 阅读全文
摘要:
//执行事务处理public void DoTran(){ //建立连接并打开 SqlConnection myConn=GetConn(); myConn.Open(); SqlCommand myComm=new SqlCommand(); //SqlTransaction myTran=new SqlTransaction(); //注意,SqlTransaction类无公开的构造函数... 阅读全文
摘要:
sysaltfiles 主数据库 保存数据库的文件 syscharsets 主数据库 字符集与排序顺序 sysconfigures 主数据库 配置选项 syscurconfigs 主数据库 当前配置选项 sysdatabases 主数据库 ... 阅读全文
摘要:
一些常见的序列化格式包括二进制、SOAP和XML。 所谓静态属性,就是这个类所有对象所公有的属性,不管你创建了多少个这个类的实例,但是类的静态属性在内存中只有一个。 由于PetShop 4.0是基于.NET Framework 2.0平台开发的电子商务系统,因而它在表示层也引入了许多ASP.NET 2.0的新特性,例如MemberShip、Profile、Master Page、登录控件等特性。 阅读全文
摘要:
Sytem.Exception 异常基类 Exception 包含很多属性,可以帮助标识异常的代码位置、类型、帮助文件和原因:StackTrace、InnerException、Message、HelpLink、HResult、Source、TargetSite 和 Data。System.SystemException,System.WebServices.Prot... 阅读全文
摘要:
Action 操作Build 生成ClickOnce 一种无接触部署方式Deployment ... 阅读全文
摘要:
private string CreateZIPFile(string path,int M) { try { Crc32 crc = new Crc32(); ICSharpCode.SharpZipLib.Zip.ZipOutputStream zipout=new ICSharpCode.SharpZipLib.Zip.ZipOutputStream(System.IO.File.Creat... 阅读全文
摘要:
共8个命名空间ICSharpCode.SharpZipLib ZipException类ICSharpCode.SharpZipLib.BZip2 Bzip2压缩算法ICSha... 阅读全文
摘要:
文件转为二进制流 FileStream fs =new FileStream(strFile,FileMode.OpenOrCreate, FileAccess.Read); Byte[] img = new Byte[fs.Length]; fs.Read(img, 0, Conv... 阅读全文
摘要:
引导状语从句的是某些从属连词. 状语从句根据其用途可以分为时间、地点、原因、结果、程度、目的、条件、让步、方式等九种。时间ads,dfsfafa地点原因结果程度目的条件让步方式 阅读全文
|