温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:香蕉视频网源码
当前文件:
BnVideo/com.bn388.video.BLL/err.cs[1K,2009-6-12 11:34:38],打开代码结构图
BnVideo/com.bn388.video.BLL/err.cs[1K,2009-6-12 11:34:38],打开代码结构图1using System; 2
using System.Data; 3
using System.Collections; 4
using System.Collections.Generic; 5
using System.Configuration; 6
using System.Web; 7
using System.Web.Security; 8
using System.Web.UI; 9
using System.Web.UI.WebControls; 10
using System.Web.UI.WebControls.WebParts; 11
using System.Web.UI.HtmlControls; 12
using com.bn388.video.Model; 13
14
namespace com.bn388.video.BLL 15
{ 16
public class err 17
{ 18
private static com.bn388.video.IDAL.IDAL_err err_ = com.bn388.video.Factory.Factory_err.select(); 19
20
public static int insert(Hashtable ht) 21
{ 22
return err_.insert(ht); 23
} 24
25
public static int delete(string _where) 26
{ 27
return err_.delete(_where); 28
} 29
30
public static int update(Hashtable ht, string _where) 31
{ 32
return err_.update(ht, _where); 33
} 34
35
public static int update_(string key, string _where) 36
{ 37
return err_.update_(key, _where); 38
} 39
40
public static List<err_info> dr() 41
{ 42
return err_.dr(); 43
} 44
45
public static err_info SingleRow(string _where) 46
{ 47
return err_.SingleRow(_where); 48
} 49
50
public static int count(string _where) 51
{ 52
return err_.count(_where); 53
} 54
55
} 56
} 57






}
}