Пример #1
0
        /// <summary>
        /// Return true if this metatable maps to an Oracle source
        /// </summary>

        public static bool IsOracleMetatable(MetaTable mt)
        {
            bool isOracleTable = (MetaBrokerUtil.IsSqlMetaBroker(mt.MetaBrokerType) &&
                                  !IsOdbcMetatable(mt));

            return(isOracleTable);
        }
Пример #2
0
        /// <summary>
        /// Return true if this metatable maps to a sql source
        /// </summary>

        public static bool IsSqlMetaTable(MetaTable mt)
        {
            return(MetaBrokerUtil.IsSqlMetaBroker(mt.MetaBrokerType));
        }