摘要:
using System.Collections.Generic;using System.Text;using System;namespace yangliToyinli{ #region ChineseCalendarException /// <summary> /// 中国日历异常处理 /// </summary> public class ChineseCalendarException : System.Exception { public ChineseCalendarException(string msg) : base(msg) { } } #en 阅读全文
摘要:
USE [DB]GO/****** Object: UserDefinedFunction [dbo].[GetNewPayOrderCode] Script Date: 03/12/2013 16:26:22 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE FUNCTION [dbo].[GetNewPayOrderCode] ( @Date DATETIME) RETURNS VARCHAR(16)AS BEGIN Declare @Year Char(4) -- 年月Declare @Month Char(2) -- 阅读全文