當前位置: 首頁>>代碼示例>>C#>>正文


C# MySqlStream.ReadFieldLength方法代碼示例

本文整理匯總了C#中MySql.Data.MySqlClient.MySqlStream.ReadFieldLength方法的典型用法代碼示例。如果您正苦於以下問題:C# MySqlStream.ReadFieldLength方法的具體用法?C# MySqlStream.ReadFieldLength怎麽用?C# MySqlStream.ReadFieldLength使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在MySql.Data.MySqlClient.MySqlStream的用法示例。


在下文中一共展示了MySqlStream.ReadFieldLength方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1:

		void IMySqlValue.SkipValue(MySqlStream stream)
		{
			long len = stream.ReadFieldLength();
			stream.SkipBytes((int)len);
		}
開發者ID:maanshancss,項目名稱:ClassLibrary,代碼行數:5,代碼來源:MySqlString.cs

示例2: ReadValue

		public IMySqlValue ReadValue(MySqlStream stream, long length, bool isNull)
		{
            this.isNull = isNull;
			if (isNull)
				return this;

			if (buffer == null)
				buffer = new byte[8];
			if (length == -1)
			{
				length = stream.ReadFieldLength();
			}
			Array.Clear(buffer, 0, buffer.Length);
			for (long i = length - 1; i >= 0; i--)
				buffer[i] = (byte)stream.ReadByte();
			mValue = BitConverter.ToUInt64(buffer, 0);
			return this;
		}
開發者ID:maanshancss,項目名稱:ClassLibrary,代碼行數:18,代碼來源:MySqlBit.cs

示例3: MySqlBinary

        IMySqlValue IMySqlValue.ReadValue(MySqlStream stream, long length, bool nullVal)
        {
            if (nullVal)
                return new MySqlBinary(type, true);

            if (length == -1)
                length = (long)stream.ReadFieldLength();

            byte[] newBuff = new byte[length];
            stream.Read(newBuff, 0, (int)length);
            return new MySqlBinary(type, newBuff);
        }
開發者ID:rykr,項目名稱:connector-net,代碼行數:12,代碼來源:MySqlBinary.cs

示例4: MySqlBinary

		IMySqlValue IMySqlValue.ReadValue(MySqlStream stream, long length, bool nullVal)
		{
            MySqlBinary b;
            if (nullVal)
                b = new MySqlBinary(type, true);
            else
            {
                if (length == -1)
                    length = (long)stream.ReadFieldLength();

                byte[] newBuff = new byte[length];
                stream.Read(newBuff, 0, (int)length);
                b = new MySqlBinary(type, newBuff);
            }
            b.IsGuid = this.IsGuid;
            return b;
		}
開發者ID:tdhieu,項目名稱:openvss,代碼行數:17,代碼來源:MySqlBinary.cs


注:本文中的MySql.Data.MySqlClient.MySqlStream.ReadFieldLength方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。