From 76a8f1416f77976c01e214db6b32dc3e44f7e26e Mon Sep 17 00:00:00 2001 From: JDierkse Date: Mon, 6 Jul 2020 14:21:44 +0200 Subject: [PATCH] Don't clear Database when disconnecting --- MySQL/MySQLClientImpl.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/MySQL/MySQLClientImpl.cpp b/MySQL/MySQLClientImpl.cpp index 7f338bc..fb9f4a5 100644 --- a/MySQL/MySQLClientImpl.cpp +++ b/MySQL/MySQLClientImpl.cpp @@ -167,7 +167,6 @@ void MySQLClientImpl::InternalConnect() void MySQLClientImpl::InternalDisconnect() { m_pConnection.reset(); - m_database = ""; m_connected = false; }