Re: MySQL Import Automation
On Error Resume Next: It's really tempting to use "On Error Resume Next" to make the code run without stopping for errors, but this can be a huge issue in production code. It hides errors that could cause problems down the road. It’s best to properly handle errors so you can catch and address any issues.
Password Security: First, definitely change your password right away. Sharing passwords can lead to serious security issues, so make sure it’s a strong one and keep it private.
Also, take the time to learn how to securely supply credentials to MySQL. The link provided will guide you on best practices to handle your database credentials safely.
Accessing MySQL on Another Host: If you need to access MySQL on a different machine, make sure to use the --host <hostname> option. This ensures you’re connecting to the correct server.
Subject
Written By
Posted
Re: MySQL Import Automation
June 18, 2025 06:56AM
Sorry, only registered users may post in this forum.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.