MySQL表未插入数据(MariaDB)

2022-02-24 00:00:00 python raspberry-pi database mariadb mysql

我目前正在尝试实现一个python脚本,该脚本将把两个虚拟值插入到我的SQL数据库(MariaDB)的表中。我正在我的树莓PI上使用Stretch OS。

我首先在MariaDB的现有数据库中成功创建表。

MariaDB [testdb]> CREATE table testdbtable (col1 char(1), col2 char(1), col3 char(1));
Query OK, 0 rows affected (0.12 sec)

使用show tables;可以看到testdbtable作为我创建的表。

+------------------+
| Tables_in_testdb |
+------------------+
| testdbtable      |
+------------------+
1 row in set (0.00 sec)

使用show columns from testdbtable;我得到:

+-------+---------+------+-----+---------+-------+
| Field | Type    | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| col1  | char(1) | YES  |     | NULL    |       |
| col2  | char(1) | YES  |     | NULL    |       |
| col3  | char(1) | YES  |     | NULL    |       |
+-------+---------+------+-----+---------+-------+
3 rows in set (0.00 sec)

然后我创建了一个python脚本:

#!/usr/bin/python
import mysql.connector as mariadb 

mariadb_connection = mariadb.connect(user='root', password='', database='testdb')

cursor = mariadb_connection.cursor()

cursor.execute("INSERT INTO testdbtable(col1, col2, col3) VALUES ('a', 'b', 'c')");

mariadb_connection.close()
此脚本在终端上运行,没有任何错误。但是,当我在终端上运行MariaDB时,我没有看到从我的脚本插入到此表中的虚拟值(即a、b、c):

MariaDB [testdb]> select * from testdbtable;
Empty set (0.00 sec)

如果有人能就我在脚本中可能做错的地方给我任何建议,我将不胜感激?


解决方案

我想您需要提交更改。请参阅本文

https://mariadb.com/resources/blog/how-connect-python-programs-mariadb

cursor.execute("INSERT INTO testdbtable(col1, col2, col3) VALUES ('a', 'b', 'c')");

mariadb_connection.commit()

相关文章