I would like to run a query from isql that will update records from a text file.
Lets say I have a table called table1 with the fields
id --> incremental primary key
Name --> varchar(30)
I then have a test file in the format
10|something|
22|somthing2|
44|lala|
Through isql the first cell from the text file matches it to the table and then updates the Name field with the text files second field.
I can change the text file to any format needed.
Does anyone know if this is possible or how to get a recordset to be updated from a text file ???
Lets say I have a table called table1 with the fields
id --> incremental primary key
Name --> varchar(30)
I then have a test file in the format
10|something|
22|somthing2|
44|lala|
Through isql the first cell from the text file matches it to the table and then updates the Name field with the text files second field.
I can change the text file to any format needed.
Does anyone know if this is possible or how to get a recordset to be updated from a text file ???