Import Text (Delimited) File Into Table Using VB5 
Author Message
 Import Text (Delimited) File Into Table Using VB5

Hi.

How can I import a text (delimited) file into a table using VB5.

TIA

Rita



Sat, 21 Oct 2000 03:00:00 GMT  
 Import Text (Delimited) File Into Table Using VB5

You can try the followinf

Open The file using

Open "FileName" for input as #1
Do while not eof(10

     Line input #1, Readstring

    ''Add record to Database

Loop

Close #1

Quote:

>Hi.

>How can I import a text (delimited) file into a table using VB5.

>TIA

>Rita



Sun, 22 Oct 2000 03:00:00 GMT  
 Import Text (Delimited) File Into Table Using VB5

It can be troublesome to convert a text file into an Access database. It
takes a lot of time to open the file for sequential access and create new
records using the AddNew method. Instead, use the text ISAM driver and SQL
to do the job for you. First, create a SCHEMA.INI file for the text file and
place it in the same directory as the text file. Use this code to convert
the database. Once done, you only need to create the indexes. You can use
this method to convert text files in excess of 100,000 records in just a few
seconds.;

Dim db As Database, tbl as TableDef
Set db = DBEngine.CreateDatabase(App.Path & "\mymdb.mdb", dbLangGeneral,
dbVersion_0)
Set tbl = db.CreateTableDef("Temp")
tbl.Connect = "Text;database=c:\vbpj\data"
tbl.SourceTableName = "Customer#txt"
db.TableDefs.Append tbl
db.Execute "Select Temp.* into NewTable from Temp"
db.TableDefs.Delete tbl.Name
db.Close
Set tbl = Nothing
Set db = Nothing

Quote:

>Hi.

>How can I import a text (delimited) file into a table using VB5.

>TIA

>Rita



Sun, 22 Oct 2000 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Importing Delimited Text files into Access 2.0 using VB4

2. I need some help Importing delimited text files using VB 4.0 code

3. Comma delimited text file to DB table using ADO

4. Import Text(Tab delimited) to SQL Server Table

5. import delimited text into table

6. import hebrew text files to mdb files, using VB5

7. How to import a text file to my mdb file using vb5

8. Import comma delimited file into Access table

9. Importing text file into access table in vb5

10. Import text delimited file

11. Automating importing a text file (comma delimited) with VBA

12. Delimited text file import - simple?

 

 
Powered by phpBB® Forum Software