我正在尝试将输入插入数据库。每当我输入输入内容时,python程序都不会出现任何错误,但是仍然不会出现在数据库中
CREATE TABLE `users` (`userid` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`userid`)
#This is the table
#Below is the code that is meant to store the input.
def save_results():
print('Please enter your first and last name...')
name = (input('Enter: '))
mycursor.execute("INSERT INTO `test`.`users` (`name`) VALUES ('" +
name + "');")
出现在名称列中的名称和要自动递增的用户ID。