2
2
20two.may2020-10-18 11:32:30
Python
20two.may, 2020-10-18 11:32:30

Problem when checking if record exists in sqlite3 table. Where is the mistake?

The clans table was created, but when creating the .db itself, its filling was not specified in the on_member_join() and on_ready() functions.

if cursor.execute(f"SELECT owner_id FROM clans WHERE owner_id = {ctx.author.id}").fetchone() is None and cursor.execute(f"SELECT clan_name FROM clans WHERE clan_name = {rearray}").fetchone() is None:

Error:
sqlite3.OperationalError: near "1": syntax error

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Ronald McDonald, 2020-10-18
@20two_may

I did not delve into the code, but here:
WHERE clan_name = {rearray}
There are not enough quotes.
If you use doubles, then don't forget about shielding.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question