I am working on windows application using c# and MySQL. I inserted new record by reading text file into MySQL database, Database having no primary key but combination of four columns we can consider as component of primary key (but actually database having no primary key). I know how to add and update record using DataAdapter and DataSet. But I can not update a record in the database having no primary key.
Can you please guide me, how can I update a record in the database with a database having no primary key.
Thanks.