Re: create a database/tables to access/insert using a canvas app
@ajithd6368
1. On your screen place two TextInput controls and name them txtFirstName and txtLastName
2. Add a button and name it btnAdd. For the OnSelect Property use
Collect(colMyItems,{FirstName:txtFirstName.Text,LastName:txtLastName.Text})
3. Add a Gallery to your screen and name it galMyItems. For the Items Property use:
colMyItems

To access your Data. You could either use now the collection "colMyItems" or galMyItems.AllItems
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.