程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> SqlServer2005 >> 使用c#構造date數據類型

使用c#構造date數據類型

編輯:SqlServer2005
/***********************************
作者:trieagle(讓你望見影子的牆)
日期:2009.8.14
注: 轉載請保留此信息
************************************/
使用c#構造date數據類型
在sql server2005沒有實現date類型,但是提供了很好的擴展性,可以利用CLR來構造date類型。有一部分是參考了Fc的代碼寫的。
步驟:
1、在vs 2005中新建項目,一次選擇c#——>>數據庫——>>sql server項目,輸入項目名稱
2、選擇要連接的數據庫
3、在項目名稱右鍵,添加——>>新建項——>>用戶定義的類型——>>輸入類型名稱
4、代碼如下:
復制代碼 代碼如下:
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
[Serializable]
[Microsoft.SqlServer.Server.SqlUserDefinedTypeFormat.UserDefined ,IsByteOrdered=true,MaxByteSize =20,ValidationMethodName="ValidateDate")]
public struct date : INullable,IBinarySerialize
{
// 私有成員
private bool m_Null;
private string m_date;
public override string ToString()
{
if (this.m_Null)
return "null";
else
{
return this.m_date;
}
}
public bool IsNull
{
get
{
return m_Null;
}
}
public static date Null
{
get
{
date h = new date();
h.m_Null = true;
return h;
}
}
public static date Parse(SqlString s)
{
if (s.IsNull || (!s.IsNull && s.Value.Equals("")))
return Null;
else
{
date u = new date();
string[] xy = s.Value.Split(" ".ToCharArray());
u.m_date = xy[0];
if (!u.ValidateDate())
throw new ArgumentException ("無效的時間");
return u;
}
}
public string _date
{
get
{
return this.m_date;
}
set
{
m_Null = true;
m_date = value;
if (!ValidateDate())
throw new ArgumentException("無效的時間");
}
}
public void Write(System.IO.BinaryWriter w)
{
byte header = (byte)(this.IsNull ? 1 : 0);
w.Write(header);
if (header == 1)
{
return;
}
w.Write(this.m_date);
}
public void Read(System.IO.BinaryReader r)
{
byte header = r.ReadByte();
if (header == 1)
{
this.m_Null = true;
return;
}
this.m_Null = false ;
this.m_date = r.ReadString();
}
private bool ValidateDate() //判斷時間是否有效
{
try
{
DateTime dt = Convert.ToDateTime(m_date);
return true;
}
catch
{
return false;
}
}
}

5、按F5進行部署
6、測試:
復制代碼 代碼如下:
CREATE TABLE tb(id int,dt dbo.Date DEFAULT CONVERT(dbo.Date,CONVERT(VARCHAR(10),GETDATE(),120)));
insert into tb(id) values(1)
SELECT id,dt=dt.ToString() FROM tb;
/*
結果:
id dt
1 2009-08-14
*/
DROP TABLE tb;

注:
1、 如果要對date類型進行日期的加減,可以調用ToString()方法輸出為字符串,然後轉化為datetime類型,然後再進行日期的計算。
2、 不能直接使用select * from tb 來輸出dt列的值,這樣輸出的是一串二進制數
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved