﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10198	Can't execute 'INSERT' in MYSQL normally	kayu	nobody	"The following code can be run and no error indicate, but no data insert into MySql table
cursor = connection.cursor()
cursor.execute(""insert into foo (data) value ('abc')"")

But when I run with 'CREATE' command, the data will insert into the table normally. Following is a example,
cursor = connection.cursor()
cursor.execute(""insert into foo (data) value ('abc')"")
cursor = connection.cursor()
cursor.execute(""CREATE TABLE foo2 ( id int(11))"" )"		closed	Uncategorized	1.0		invalid			Unreviewed	0	0	0	0	0	0
