I have SQL in starter and B4XTable which uses B4XTable1.SetData(Data) from SQL. I want to edit SQL and B4XTable but do not know how to refresh the data in B4XTable. I can update the SQL with
How do i refresh the B4XTable? Do i have to setdata again? I just want to update the row which was edited.
B4X:
Starter.SQL1.ExecNonQuery2("UPDATE diagnosticlog SET RO = ?, Date = ?, FirstName = ?, LastName = ?, VIN = ?, Year = ?, Make = ?, Model = ?, FileName = ? WHERE rowid = ?", Array As String(WhatRo, WhatDate, WhatFirstName, WhatLastName, WhatVin, WhatYear, WhatMake, WhatModel, WhatFilename, RowId))
How do i refresh the B4XTable? Do i have to setdata again? I just want to update the row which was edited.