This example is created from MiniORM project template but product table is removed.
Category table changed to Cassa, id column (Int) changed to idCassa (String). Autoincrement is disabled.
Support CRUD using SQLite.
Cassa is a custom type
This is my answer to question here
Category table changed to Cassa, id column (Int) changed to idCassa (String). Autoincrement is disabled.
Support CRUD using SQLite.
Cassa is a custom type
B4X:
Type Cassa (IdCassa As String, Name As String)
B4X:
Private Sub clvRecord_ItemClick (Index As Int, Value As Object)
Dim selectedCassa As Cassa = Value
Log($"Casa Id: ${selectedCassa.IdCassa}${CRLF}Casa Name: ${selectedCassa.Name}"$)
End Sub
This is my answer to question here
Attachments
Last edited: