浏览代码

Don't clear Database when disconnecting

JDierkse 5 年之前
父节点
当前提交
76a8f1416f
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      MySQL/MySQLClientImpl.cpp

+ 0 - 1
MySQL/MySQLClientImpl.cpp

@@ -167,7 +167,6 @@ void MySQLClientImpl::InternalConnect()
 void MySQLClientImpl::InternalDisconnect()
 {
 	m_pConnection.reset();
-	m_database = "";
 	m_connected = false;
 }