In case you have text only then this is similar to how you could do it.
VB Code:
  1. Option Explicit
  2. 'Add a reference to MS Word xx.0 Object Library
  3. Private Sub Command1_Click()
  4.     Dim oApp As Word.Application
  5.     Dim oDoc As Word.Document
  6.    
  7.     Set oApp = New Word.Application
  8.     'For - ToDo: Start a loop to find all docs
  9.         Set oDoc = oApp.Documents.Open("C:\FirstDoc.doc") 'Change to a variable of each found doc
  10.         oDoc.Content.Select
  11.         MsgBox oDoc.FullName & " - " & Selection   'Change to insert into your sql table
  12.         oDoc.Close False
  13.         Set oDoc = Nothing
  14.     'Next
  15.     oApp.Quit False
  16.     Set oApp = Nothing
  17. End Sub