lock 버그 수정

git-svn-id: svn://192.168.0.12/source@87 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
admin
2015-05-04 01:43:43 +00:00
parent f06cc122b2
commit 5f9b64564f

View File

@@ -214,7 +214,7 @@ void Widget::StopButton()
bool Widget::LockTable(QString _strTable)
{
QSqlQuery query;
return query.exec(QString("lock tables " + _strTable + "write" ).toUtf8());
return query.exec(QString("lock tables " + _strTable + " write" ).toUtf8());
}
void Widget::UnLockTables()