ユーザーデータを取得してmysqlデータベースに入れるWebフォームがあります。先頭と末尾の空白/スペースを削除する必要があります。現在、strip() メソッドを使用していますが、mysql データベースではなく、フィールドに対してのみトリムします。
私のコードは次のとおりです。
first_name = first_name.strip()
last_name = last_name.strip()
などなど。Webページでは完全に削除されますが、SQLデータベースに入力された場合は削除されません. スペースはまだ存在します。どうすれば削除できますか?
編集:
db = MySQLdb.connect("localhost","user","pass","db_name")
cursor = db.cursor()
cursor.execute("Select * FROM registrants")
cursor.execute("INSERT INTO registrants VALUES( " + "'" + first_name + "'" + ", " + "'" + last_name + "'" + ");")
db.commit()
db.close()