Committed should have double 't'. It's not only about correct spelling. It results in errors when creating transactions:
SuperiorMySqlpp::detail::toQueryString(IsolationLevel isolationLevel)
{
switch (isolationLevel)
{
case IsolationLevel::ReadUncommited:
return "READ UNCOMMITED";
case IsolationLevel::ReadCommited:
return "READ COMMITED";
...
An error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COMMITED; START TRANSACTION READ WRITE
There are typos in
Committed should have double 't'. It's not only about correct spelling. It results in errors when creating transactions:
An error: