Thanks Brian
To explain further this is my original code based on SQLite2 back a few years ago. Everything is fine except when I go to update, delete, or add a player in each case the response says the job is completed but after going out of the app and back in nothing has changed. On my other devices Tab8 S21+ and note 8 all worked fine. the db was created in db browser for sqlite and was placed outside the app Dir.root.External. Now with s25+ phone api target 35 android 15 and File.DirInternal is the problem.
Code below is for update a player info
Sub UpdateEntry
Private Query As String
Query = "UPDATE PHockey Set Name = ?, Birthdate = ?, Eage = ?, Phone = ?, EMail = ? WHERE ID = " & Main.IDList.Get(Main.CurrentIndex)
Main.SQL1.ExecNonQuery2(Query, Array As String(edtName.Text, edtBirthdate.Text, edtEage.Text, edtPhone.Text, edtEMail.Text))
ToastMessageShow("Entry updated", False)
ShowButtons
End Sub
Thanks
Garth