Hej, mam problem. Mianowicie napisałem taki kod:
@app.route('/<element>')
def render_index(element):
message = element
sql = "select * from routes where path = {}".format(message)
gdzie w zmiennej sql powinno się utworzyć zapytanie select * from routes where path = cośTam, ale pymyslq zwraca mi błąd:
"Unknown column 'favicon.ico' in 'where clause'"
jak listuje sobie zmienną sql w konsoli to dostaje coś takiego :
select * from routes where path = favicon.ico
Może mi ktoś wyjaśnić wtf i co robię źle? :)