Arma2NETMySQLPlugin.SQLite.CloseConnection C# (CSharp) Method

CloseConnection() public method

public CloseConnection ( ) : void
return void
        public override void CloseConnection()
        {
            if (sqlite_connection != null)
            {
                try
                {
                    sqlite_connection.Close();
                    sqlite_connection = null;
                }
                catch (Exception ex)
                {
                    Logger.addMessage(Logger.LogType.Error, "Unable to close SQLite connection." + ex.ToString());
                }
            }
        }