示例#1
0
        /// <summary></summary>
        public static UInt64SqlType GetUInt64()
        {
            string key = typeof(UInt64SqlType).Name;

            UInt64SqlType returnSqlType = ( UInt64SqlType )sqlTypes[key];

            if (returnSqlType == null)
            {
                returnSqlType = new UInt64SqlType();
                sqlTypes.Add(key, returnSqlType);
            }

            return(returnSqlType);
        }
		/// <summary></summary>
		public static UInt64SqlType GetUInt64()
		{
			string key = typeof( UInt64SqlType ).Name;

			UInt64SqlType returnSqlType = ( UInt64SqlType ) sqlTypes[ key ];
			if( returnSqlType == null )
			{
				returnSqlType = new UInt64SqlType();
				sqlTypes.Add( key, returnSqlType );
			}

			return returnSqlType;
		}