Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コンピューターのMysqlデータベースにアクセスするコードをPythonで作成しました。質問は、プログラムを他のマシンで実行するにはどうすればよいですか。つまり、データベースを転送するにはどうすればよいですか。読んでくれてありがとう...
コマンドラインからのMYSQLインストールに付属のツールを使用する
バックアップ
mysqldump -u root -p pass21 --databases yourdb > multibackup.sql
戻す
mysql -u sadmin -p pass21 Customers < multibackup.sql
MySQLデータベースのバックアップと復元