读取c中的word文档,并将数据存储在sqlserver中
本文关键字:存储 数据 sqlserver 中的 word 文档 读取 | 更新日期: 2023-09-27 17:57:35
我的需求是这样的。
我有word文档,格式像数据是:
> 1. this is test doc.
> 1.1 this is test doc1.1
> 1.1.1 this is test doc 1.1.1
> 1.2 this is test doc 1.2
> 1.2.1 this is test doc 1.2.1
现在,我想读取文档数据并存储在我的sql中。我的桌子是这样的:
> ID requirement parentid
>
> 1 this is test doc 0
2 this is test doc1.1 1
3 this is test doc 1.1.1 2
4 this is test doc 1.2 1
5 this is test doc 1.2.1 4
那么,是否可以从doc中读取数据并保存在sqlserver中。
在SQL Server 2008中,我们有hierarchyid数据类型。请找到下面描述新数据类型及其用途的链接。
我认为这将使解决方案的实施更加容易。正如我所能理解的,当一个单词文档有部分-小节-小节时,比如(1、1.1、1.1.1等)。
链接为:http://msdn.microsoft.com/en-us/library/bb677290.aspx
http://msdn.microsoft.com/en-us/magazine/cc794278.aspx
http://www.sqlservercentral.com/articles/SQL+服务器+2008/62204/
希望这能有所帮助。