Im creating a Delphi 5 App with a Mysql DB backend, that deals with Contacts Details.
The user would like to import contacts from a .txt file into the DB using delphi App.
Im ok with connecting to the DB and running insert queries
is it be possible to import the txt file data into an array or string list which can then be looped through to run the insert query
The txt file would be in the following format:
"John","Smith","01272333222"
"Matt","Jones","01221122353"
"Chris","James","01382733212"
The user would like to import contacts from a .txt file into the DB using delphi App.
Im ok with connecting to the DB and running insert queries
is it be possible to import the txt file data into an array or string list which can then be looped through to run the insert query
The txt file would be in the following format:
"John","Smith","01272333222"
"Matt","Jones","01221122353"
"Chris","James","01382733212"