My SQLite db displays well until I click on my header column called 'PDF Page'. Instead of displaying the column page numbers vertically as, '0, 56, 57, ...' it displays them as 0,114, 115, ..135,...187, 199, 203 never getting to 56 until far below. Do you think I need to add a statement like:
SELECT
select_list
FROM
table
ORDER BY
column_1 ASC,
column_2 DESC;
which I found on sqlitetutorial.net?
I'll attach my zipped code which Klaus so generously generated for me a while ago. Whoops, can't upload 7zip file. I'm trying to compress the project so I can upload it here. Looking for thread to help.
SELECT
select_list
FROM
table
ORDER BY
column_1 ASC,
column_2 DESC;
which I found on sqlitetutorial.net?
I'll attach my zipped code which Klaus so generously generated for me a while ago. Whoops, can't upload 7zip file. I'm trying to compress the project so I can upload it here. Looking for thread to help.
Last edited: