/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="aceQLConnection">the Connection to the remote database.</param>
 /// <exception cref="ArgumentNullException">aceQLConnection is null!</exception>
 internal RemoteDatabaseMetaData(AceQLConnection aceQLConnection)
 {
     if (aceQLConnection == null)
     {
         throw new ArgumentNullException("aceQLConnection is null!");
     }
     this.aceQLHttpApi = aceQLConnection.GetAceQLHttpApi();
 }