I got the following error while testing some code:
SQLException: Invalid column index
What exactly does that mean?
Is
It sounds like you're trying to SELECT a column that doesn't exist.
SELECT
Perhaps you're trying to ORDER BY a column that doesn't exist?
ORDER BY
Any typos in your SQL statement?