ArcGISCompare.msAccProcs.hasMappingTables C# (CSharp) Method

hasMappingTables() private method

private hasMappingTables ( ) : System.Boolean
return System.Boolean
        private Boolean hasMappingTables()
        {
            Boolean retval = false;
              OleDbCommand theCMD;
              OleDbDataReader theRead;

              try
              {
            checkOpen();

            String theSQL = "SELECT * FROM [FeatureMappings]";
            theCMD = new OleDbCommand(theSQL, theConn);

            theRead = theCMD.ExecuteReader(System.Data.CommandBehavior.CloseConnection);

            retval = true;
              }
              catch (Exception ex)
              {
            retval = false;
              }

              return retval;
        }