逆水行船

别人的天堂,是我的异乡;无端的繁华,倍添我的惆怅

 

2005年7月26日

DNN学习笔记-代码学习:Null

摘要: using System;using System.Reflection; namespace WebApplication1{ /// /// 对空值的处理。 /// public class Null { public Null() { // // TODO: 在此处添加构造函数逻辑 // } // 各类型的空值表示值 public static short Nu... 阅读全文

posted @ 2005-07-26 13:04 荣- 阅读(287) 评论(0) 推荐(0)

Attribute学习:AddCustomerCLS

摘要: using System;using System.Data;using System.Data.SqlClient; namespace WebApplication1{ /// /// 属性的案例程序。 /// public class AddCustomerCLS { public AddCustomerCLS() { // // TODO: 在此处添加构造函数逻辑 //... 阅读全文

posted @ 2005-07-26 11:51 荣- 阅读(165) 评论(0) 推荐(0)

Attribute学习:SqlCommandGenerator

摘要: using System;using System.Reflection;using System.Data;using System.Data.SqlClient;using Debug = System.Diagnostics.Debug;using StackTrace = System.Diagnostics.StackTrace; namespace WebApplication1{ /... 阅读全文

posted @ 2005-07-26 11:49 荣- 阅读(345) 评论(0) 推荐(0)

Attribute学习:SqlCommandMethodAttribute

摘要: using System;using System.Data; namespace WebApplication1{ /// /// 方法的属性,存储要生成Command对象的类型与CommandText值。 /// [AttributeUsage(AttributeTargets.Method)] public sealed class SqlCommandMethodAttribute ... 阅读全文

posted @ 2005-07-26 11:45 荣- 阅读(273) 评论(0) 推荐(0)

Attribute学习:SqlParameterAttribute

摘要: using System;using System.Data;using Debug = System.Diagnostics.Debug; namespace WebApplication1{ /// /// 存储SQL语句参数信息的属性。 /// 这些信息包括参数的名称、类型、方向、大小、精度等。 /// [AttributeUsage(AttributeTargets.Parameter... 阅读全文

posted @ 2005-07-26 11:30 荣- 阅读(219) 评论(0) 推荐(0)

导航