my requirement like this.
i have word document with the format like data is:
> 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
now , i want read the document data and store in my sql. my table look like this:
> 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
so, is it possible to read the data from doc and save in sql server.