![]() |
VOOZH | about |
We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.
Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.
Follow TNS on your favorite social media networks.
Become a TNS follower on LinkedIn.
Check out the latest featured and trending stories while you wait for your first TNS newsletter.
I want to show you something pretty cool that Python can do: Insert data into a MySQL database table.
Imagine being able to inject data into a table without having to log into the MySQL console first — and injecting that data from a Python application can be incredibly flexible and handy. Even better, it’s not all that much of a challenge.
Let me show you how it’s done.
I’m going to demonstrate this on an instance of Ubuntu Server 22.04.3. If you’re using a different Linux distribution (or if you’re using either MacOS or Windows), you’ll have to alter the installation commands. With that said, you’ll need an OS that supports Python3 and a user with sudo privileges.
And, just for fun, I’m going to show you how to install MySQL and create a user and database.
Groovy. Let’s make some Python/database magic.
The first thing we’re going to do is install the MySQL database server. To do that, log into your instance of Ubuntu Server and prepare to install.
sudo apt-get install mysql-server -y
When that finishes, you’ll want to enable the service, so it runs at boot. To do that, issue the command:
sudo systemctl enable --now mysql
Before you continue, you must also install the Python3 MySQL Connector, which allows Python to interact with your MySQL databases. This can be accomplished with the command:
sudo apt-get install python3-mysql.connector -y
If your Ubuntu instance doesn’t already have Python installed, you can do so with the command:
sudo apt-get install python3 -y
That’s it for the installation.
Next, we need to create a database. Log into the MySQL console with the command:
sudo mysql
Once there, create a database named “staff” with the command:
CREATE DATABASE staff;
Now, we can create a user (we’ll name it “jack”) and give that user permission to use the new database. Create the user with:
CREATE USER 'jack'@'localhost' IDENTIFIED BY 'PASSWORD';
Make sure PASSWORD is a strong, unique password.
Give that user access to our staff database with the command:
GRANT ALL PRIVILEGES ON staff.* TO 'jack'@'localhost';
We now have to create a table. First, change to the staff database with:
USE staff;
Now, we can create a table on our new database. Let’s keep it simple and create a table called “editorial” with two columns (name and email). The command for that would be:
CREATE TABLE editorial (id INT, name VARCHAR(30), email VARCHAR(30));
We now have a database, a user, and a table ready for action.
This is where the fun starts. We’re going to create a Python application that injects data into the name and email columns of the editorial columns.
Create the script with the command:
nano insert.py
In that file, paste the following content:
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="jack",
password="PASSWORD",
database="staff"
)
mycursor = mydb.cursor()
sql = "INSERT INTO editorial (name, email) VALUES (%s, %s)"
val = ("NAME", "EMAIL")
mycursor.execute(sql, val)
mydb.commit()
print(mycursor.rowcount, "record inserted.")
PASSWORD is the password you created for the MySQL user jack, NAME is the name you want to insert into the name column and EMAIL is the address you want to insert into the email column.
Here’s a bit more explanation:
Save and close the file with the Ctrl+X key combination.
We can now run our new Python app that will inject the data into the table that you specified in the script. The run command for this would be:
python3 insert.py
You should receive confirmation that the injection was successful. You can verify this with the command:
SELECT * FROM editorial;
You should see your first data added to the table.
That’s not a very efficient method of injecting data into a database because you’d have to edit the script every time. Fortunately, we can use variables in Python to accept input that will then be inserted.
To do this, we have to make use of the input() function, which allows the script to accept input from a user. Our new script would look like this:
import mysql.connector
name = input("Type a name: ")
email = input("Type an email: ")
mydb = mysql.connector.connect(
host="localhost",
user="jack",
password="PASSWORD",
database="staff"
)
mycursor = mydb.cursor() sql = "INSERT INTO editorial (name, email) VALUES (%s, %s)" val = (name, email) mycursor.execute(sql, val) mydb.commit()
PASSWORD is the password you set for the MySQL user.
Save and close the file. Run the app in the same way, only this time you’ll be prompted to input a name and then an email.
And that’s how you can use Python to inject data into a MySQL table. Play around with this and see how creative you can get.
A: The most common method is by using the mysql-connector-python library, which provides a simple and efficient interface for interacting with MySQL databases.
A: You can install it via pip with the command pip install mysql-connector-python, or use conda like so conda install -c anaconda mysql-connector-python.
A: A connection pooler is a mechanism that allows multiple connections to be shared between applications. The most popular library for this purpose in Python is mysql-connection-pooling.
A: Common connection errors include:
To troubleshoot these errors, check your MySQL configuration files (my.cnf, etc.), ensure that the correct username and password are provided, and verify that the database connection details are accurate.
A: Yes. Some popular alternatives include:
A: A connection timeout is the time period allowed for a connection attempt to succeed. By default, this value can be adjusted via configuration files (my.cnf, etc.).