You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IsolationLevel.Snapshot=>thrownewNotSupportedException("IsolationLevel.{0} is not supported.".FormatInvariant(Transaction.IsolationLevel)),
24
+
IsolationLevel.Snapshot=>"repeatable read",
25
25
IsolationLevel.Chaos=>thrownewNotSupportedException("IsolationLevel.{0} is not supported.".FormatInvariant(Transaction.IsolationLevel)),
26
26
27
27
// "In terms of the SQL:1992 transaction isolation levels, the default InnoDB level is REPEATABLE READ." - http://dev.mysql.com/doc/refman/5.7/en/innodb-transaction-model.html
// "In terms of the SQL:1992 transaction isolation levels, the default InnoDB level is REPEATABLE READ." - http://dev.mysql.com/doc/refman/5.7/en/innodb-transaction-model.html
68
69
IsolationLevel.Unspecified=>"repeatable read",
69
70
70
71
_ =>thrownewNotSupportedException("IsolationLevel.{0} is not supported.".FormatInvariant(isolationLevel))
m_connection.Execute(@"set global general_log = 0;");
75
+
varresults=connection.Query<string>($"select convert(argument USING utf8) from mysql.general_log where thread_id = {m_connection.ServerThread} order by event_time desc limit 10;");
m_connection.Execute(@"set global general_log = 0;");
106
+
varresults=connection.Query<string>($"select convert(argument USING utf8) from mysql.general_log where thread_id = {m_connection.ServerThread} order by event_time desc limit 10;");
0 commit comments