总结

代码
using System.Security.Cryptography;

namespace Wicresoft.Common.Utility
{
    
public static class StringHelper
    {
        
public static string GetMD5Str(string str)
        {
            MD5 md5 
= new MD5CryptoServiceProvider();
            
byte[] byteArray = md5.ComputeHash(Encoding.UTF8.GetBytes(str));
            
return Convert.ToBase64String(byteArray);
        }
    }
}
 

Enum.GetName(typeof(UsercontrolType), UcTypes)


 

 

代码
ALTER trigger [dbo].[lockDay_salesDaily]
    
on [dbo].[sales_daily]
    after 
insert,update
as 
begin
        
declare @dayId int;
        
set @dayId=(select i.day_Id from Inserted i);
        
if not exists(select null from lock_day where day_id=@dayId and tableName='sales_daily')
        
begin
            
insert into lock_day(day_id,tableName) values (@dayId,'sales_daily')
        
end    
end

 

 

posted on 2010-02-24 17:51  Paul_  阅读(123)  评论(0编辑  收藏  举报

导航