/// <summary>
 /// Changes the current database for an open Connection object.
 /// </summary>
 /// <param name="databaseName">The name of the database to use in place of the current database.</param>
 internal protected void ChangeDatabase(string databaseName)
 {
     BaseConnection.ChangeDatabase(databaseName);
 }