What exactly do you want to do ?
Change the data of one column in one specific row?
The code you show:
SQL1.ExecNonQuery("UPDATE table1 SET col1='tata'")
will change the data of col1 in all rows to
tata!
To change the data in a specific row , your code should be like this:
SQL1.ExecNonQuery("UPDATE table1 SET col1='tata' WHERE rowid = xxx")
You need a reference ID to the specific row this could be the intrnal
rowid or a specific column with the ID.
You may have a look at the
SQLite Database Booklet, it contains several example projects.