이 문서의 내용은 Python이 mysql과 상호 작용할 때 발생하는 다양한 문제와 해결 방법에 대한 것입니다. 이는 특정 참조 가치가 있으므로 도움이 필요한 친구에게 도움이 되기를 바랍니다.
MySQLdb와 상호 작용하기 위해 Python을 배우기 시작했고 많은 함정에 직면했습니다.
첫 번째
%d 형식: 숫자가 필요하며 str
해결책:
# -*- coding: utf-8 -*- import MySQLdb try: conn=MySQLdb.connect(host='localhost',port='3306',db='test',user='root',passwd='toor',charset='utf-8') csl=conn.cursor() count=csl.execute("inser into stu(stu_id,stu_name,stu_phone,stu_hometown) values('0003','kj','19564832601',河北)") print count conn.commit() csl.close() conn.close() except Exception,e: print e.message an integer is required (got type str) port=3306
Just
(1129, "Host '192.168.65.1' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'")
mysql - u root -p 데이터베이스 입력
show variables like 'max_connect_errors';
최대 연결 수 확인
set global max_connect_errors = 1000;
max_connect_errors 값 수정:
(3) 수정이 성공했는지 확인
> show variables like '%max_connect_errors%';
해결책 2: mysqladmin flash-hosts 명령을 사용하여 다음 작업을 수행하세요. 호스트 파일을 정리하세요
(1) 다음 명령을 사용하여 찾은 디렉터리를 수정합니다: mysqladmin -u xxx -p 플러시-hosts
또는
> flush hosts;
해결책 3: mysqld를 다시 시작
다시 시작하기 전에 구성 파일.
아아아아위 내용은 Python이 mysql과 상호 작용할 때 발생하는 다양한 문제와 해결 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!