Python Forum
IndexError: list index out of range
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IndexError: list index out of range
#4
(Jul-25-2022, 05:00 AM)deanhystad Wrote: Why are you using quotes inside your queries?

I expect a query to be formatted like this:
result = self.cursor.execute("SELECT money FROM users WHERE user_id = ?", (user_id,)).fetchmany(1)
I guess you can make a table where all the columns have starting and ending quotes, but why?

And why are you using fetchmany(1) instead fetchone()?
return self.cursor.execute("SELECT money FROM users WHERE user_id = ?", (user_id,)).fetchone()

Thanks, it was all about the quotes that were in the db.py file.
Reply


Messages In This Thread
IndexError: list index out of range - by dolac - Jul-24-2022, 02:44 PM
RE: IndexError: list index out of range - by woooee - Jul-24-2022, 05:31 PM
RE: IndexError: list index out of range - by dolac - Jul-25-2022, 03:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  IndexError: index 10 is out of bounds for axis 0 with size 10 Mehboob 11 2,174 Sep-14-2023, 06:54 AM
Last Post: Mehboob
Thumbs Down I hate "List index out of range" Melen 20 3,379 May-14-2023, 06:43 AM
Last Post: deanhystad
Exclamation IndexError: Replacement index 2 out of range for positional args tuple - help? MrKnd94 2 6,484 Oct-14-2022, 09:57 PM
Last Post: MrKnd94
  I'm getting a String index out of range error debian77 7 2,383 Jun-26-2022, 09:50 AM
Last Post: deanhystad
  IndexError: list index out of range Anldra12 2 1,460 May-03-2022, 01:39 PM
Last Post: Anldra12
  TypeError: list indices must be integers or slices, not range Anldra12 2 2,610 Apr-22-2022, 10:56 AM
Last Post: Anldra12
  matplotlib x axis range goes over the set range Pedroski55 5 3,263 Nov-21-2021, 08:40 AM
Last Post: paul18fr
  IndexError: list index out of range rf_kartal 6 2,883 Sep-07-2021, 02:36 PM
Last Post: Larz60+
  Python Error List Index Out of Range abhi1vaishnav 3 2,344 Sep-03-2021, 08:40 PM
Last Post: abhi1vaishnav
  IndexError: list index out of range Laplace12 1 2,240 Jun-22-2021, 10:47 AM
Last Post: Yoriz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020