Hi everyone, I have an application designed to work with sqlite databases, I loaded an existing database from another application and as soon as I create an insertion of data on an edittext and store it in the database I receive an error as if it cannot find the field1 table , I point out that this database works in another application, where am I wrong?
I attach the offending code
I attach the offending code
btnsalvacucinaon:
Private Sub btnsalvacucinaon_Click
If txtcucinaon .Text="" Then
mp1.Load(File.DirAssets,"alert.wav")
mp1.Play
MsgboxAsync("Devi prima inserire l'indirizzo ip prima di salvare","AVVISO !!")
Else
dbsql1.ExecNonQuery2("INSERT INTO field1 VALUES (?)", Array As String(txtcucinaon.Text))
txtcucinaon.Text= (txtcucinaon.Text)
dbcursor1.Close
mp1.Load(File.DirAssets,"cash.wav")
mp1.Play
btnsalvacucinaon.Text="Elimina"
MsgboxAsync("Indirizzo IP aggiunto premuto qualche secondo il pulsante elimina se vuoi eliminarlo","ESEGUITO")
End If
End Sub