Composite + Visitor 在樹型結構中的應用

weixin_34304013發表於2007-04-26
表結構:
ContractedBlock.gifExpandedBlockStart.gif
 1None.gifif exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Three]') and OBJECTPROPERTY(id, N'IsUserTable'= 1)
 2None.gifdrop table [dbo].[Three]
 3None.gifGO
 4None.gif
 5None.gifCREATE TABLE [dbo].[Three] (
 6None.gif    [id] [int] NOT NULL ,
 7None.gif    [name] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
 8None.gif    [parentid] [int] NULL 
 9None.gif) ON [PRIMARY]
10None.gifGO

/Files/nanshouyong326/componsitemanagetreefinall.rar

相關文章