Hello fellow nerds,
I have a database (using Sqlite) that has ID has a primary key with autoinc, that loads the values into a listbox control. If I loop through the database normally, adding the values of the database into my listbox, I can't get the ID by using SelectedIndex because the Index will not always be the same as the ID, and the ID will not always be the Index. :( This makes it painful when I want to query to delete the row, based on SelectedIndex.
I want to delete the row by ID, but I have no way of getting that ID with the loop I use (or do I? Help me get creative!). Is there some hidden field type attribute I can use?
Thanks!