a2stepper Member Licensed User Longtime User Aug 7, 2014 #1 after loading data from sqlite file is there a way to sort one column for all? thanks.
Lahksman Active Member Licensed User Longtime User Aug 7, 2014 #2 Why don't you do the sorting in your sql query? for example: SELECT column0, column1, colum2 FROM table ORDER BY column0 ASC. This wil sort your result ascending on the first column. Upvote 0
Why don't you do the sorting in your sql query? for example: SELECT column0, column1, colum2 FROM table ORDER BY column0 ASC. This wil sort your result ascending on the first column.
klaus Expert Licensed User Longtime User Aug 7, 2014 #3 What table view are you speaking of ? ... sort one column for all? Click to expand... What do you mean ? Upvote 0
What table view are you speaking of ? ... sort one column for all? Click to expand... What do you mean ?
a2stepper Member Licensed User Longtime User Aug 8, 2014 #4 YES that works GREAT!!! thank you Upvote 0