Example #1
0
        /// <summary></summary>
        public static Int64SqlType GetInt64()
        {
            string key = typeof(Int64SqlType).Name;

            Int64SqlType returnSqlType = ( Int64SqlType )sqlTypes[key];

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

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

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

			return returnSqlType;
		}