Dear Erel , on B4xTable-Flags I want to change the columns order and put flags column between id and name.Please tell me how i want to make a similar database with my books. MANY MANY THANKS !!!
' The order of this lines defines the Order in the Table.
' Add your Flags Comulm after the ID Column.
B4XTable1.AddColumn("US County", B4XTable1.COLUMN_TYPE_NUMBERS)
B4XTable1.AddColumn("Name", B4XTable1.COLUMN_TYPE_TEXT)
To help us solve your problem you will need to show us the code you used to do this. Copy some code and show it using Code Tags.I change the column's order as you said and i put the flags column after id .I left the other code as it was .
Here is what I did to get it to work the way you want:B4xTable-Flags I want to change the columns order and put flags column between id and name