MySQL with Python connector
MySQL
記事の背景
MySQLに関する記事は多いのですが、途中まで躓いているものも多い。
本記事は、Windowsに限定してインストール、初期設定、データベース作成
そしてPythonからデータベースへのアクセスまで網羅します。
1.install
MySQLダウンロードサイト
https://dev.mysql.com/downloads/installer/
ログインについては、スキップする
画面左下の「No thanks, just start my download.」からダウンロードする。
2.インストール設定
Custom
☑MySQL Server
☑MySQL Shell
☑Connector/Pythonを選ぶ
Type & networking
☑Development Computerを選択
☑TCP/IP Port:3306
☑X Protocol Port:33060
☑Open Windows Firewall port for network access
認証設定
☑Use strong password Encryption for Authentication
Use Legacy Authentication Method
3.認証関連
☑ルートパスワード入力
☑ユーザ名追加
User Name:
Host:locahost
Role:DB Admin
4.MySQL 基本コマンド
☑データベースを表示する
show databases;
☑データベースを作成する
CREATE DATABASE データベース名
;
☑データベースを選択する
use データベース名
;
☑テーブルを表示する
SHOW TABLES;
☑テーブルを削除
DROP TABLE IF EXISTS 削除するテーブル名
;
☑インクリメントをリセット(テーブルを空にしている場合)
ALTER TABLE テーブル名
auto_increment = 1;
4.Python connector
pip install mysql-connector-python
pip list | grep mysql
mysql-connector-python 8.0.28
5. ソースサンプル
Author And Source
この問題について(MySQL with Python connector), 我々は、より多くの情報をここで見つけました https://qiita.com/akeyi2018/items/8c66c5a66bef76921028著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .