vitchu2003 0 Newbie Poster

Hello Friends,
I need to store 4text files(diff location) into MYSQL Database., then i access 4 locations data.Here i attached 2 text files.
1. report cum export.txt file contain how i export single databade into text file
2.SalesHyd.txt file after i export the following step1.
Now i need to read and store SlaesHyd data's into 1 seperate temporary table it's contain 4 column InvoiceNumber,Date,Title,Qty(Same thing i do 4 locations data)

The following code i used to read and load to database
Private Sub cmdLoad_Click()
Dim fso As FileSystemObject
Dim ts As TextStream
Dim LinesFromFile, NextLine As String

Set ts = fso.OpenTextFile(("D:\StrandReports" & "\SalesHyd.txt"), ForReading, True)

LinesFromFile = ts.ReadLine
NextLine = Split(LinesFromFile, vbTab)


???????????????(here i need what can i do?)

End Sub

Pl Help me ASAP


Advance Thanks and regards,
Viswanathan D

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.