本文整理汇总了C#中MySql.Data.MySqlClient.MySqlStream.Write方法的典型用法代码示例。如果您正苦于以下问题:C# MySqlStream.Write方法的具体用法?C# MySqlStream.Write怎么用?C# MySqlStream.Write使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MySql.Data.MySqlClient.MySqlStream
的用法示例。
在下文中一共展示了MySqlStream.Write方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1:
void IMySqlValue.WriteValue(MySqlStream stream, bool binary, object val, int length)
{
int v = Convert.ToInt32(val);
if (binary)
stream.Write(BitConverter.GetBytes(v));
else
stream.WriteStringNoNull(v.ToString());
}
示例2: WriteValue
public void WriteValue(MySqlStream stream, bool binary, object value, int length)
{
ulong v = Convert.ToUInt64(value);
if (binary)
stream.Write(BitConverter.GetBytes(v));
else
stream.WriteStringNoNull(v.ToString());
}
示例3:
void IMySqlValue.WriteValue(MySqlStream stream, bool binary, object val, int length)
{
Single v = Convert.ToSingle(val);
if (binary)
stream.Write(BitConverter.GetBytes(v));
else
stream.WriteStringNoNull(v.ToString("R",
CultureInfo.InvariantCulture));
}
示例4: Execute
public override void Execute()
{
// if we are not prepared, then call down to our base
if (!IsPrepared)
{
base.Execute();
return;
}
MySqlStream stream = new MySqlStream(Driver.Encoding);
//TODO: support long data here
// create our null bitmap
BitArray nullMap = new BitArray(Parameters.Count);
// now we run through the parameters that PREPARE sent back and use
// those names to index into the parameters the user gave us.
// if the user set that parameter to NULL, then we set the null map
// accordingly
if (paramList != null)
for (int x = 0; x < paramList.Length; x++)
{
MySqlParameter p = Parameters[paramList[x].ColumnName];
if (p.Value == DBNull.Value || p.Value == null)
nullMap[x] = true;
}
byte[] nullMapBytes = new byte[(Parameters.Count + 7)/8];
// we check this because Mono doesn't ignore the case where nullMapBytes
// is zero length.
if (nullMapBytes.Length > 0)
nullMap.CopyTo(nullMapBytes, 0);
// start constructing our packet
stream.WriteInteger(statementId, 4);
stream.WriteByte((byte) 0); // flags; always 0 for 4.1
stream.WriteInteger(1, 4); // interation count; 1 for 4.1
stream.Write(nullMapBytes);
//if (parameters != null && parameters.Count > 0)
stream.WriteByte(1); // rebound flag
//else
// packet.WriteByte( 0 );
//TODO: only send rebound if parms change
// write out the parameter types
if (paramList != null)
{
foreach (MySqlField param in paramList)
{
MySqlParameter parm = Parameters[param.ColumnName];
stream.WriteInteger(parm.GetPSType(), 2);
}
// now write out all non-null values
foreach (MySqlField param in paramList)
{
int index = Parameters.IndexOf(param.ColumnName);
if (index == -1)
throw new MySqlException("Parameter '" + param.ColumnName +
"' is not defined.");
MySqlParameter parm = Parameters[index];
if (parm.Value == DBNull.Value || parm.Value == null)
continue;
stream.Encoding = param.Encoding;
parm.Serialize(stream, true);
}
}
executionCount++;
Driver.ExecuteStatement(stream.InternalBuffer.ToArray());
}
示例5: Open
public override void Open()
{
base.Open();
// connect to one of our specified hosts
try
{
#if !CF
if (Settings.ConnectionProtocol == MySqlConnectionProtocol.SharedMemory)
{
SharedMemoryStream str = new SharedMemoryStream(Settings.SharedMemoryName);
str.Open(Settings.ConnectionTimeout);
baseStream = str;
}
else
{
#endif
string pipeName = Settings.PipeName;
if (Settings.ConnectionProtocol != MySqlConnectionProtocol.NamedPipe)
pipeName = null;
StreamCreator sc = new StreamCreator(Settings.Server, Settings.Port, pipeName);
baseStream = sc.GetStream(Settings.ConnectionTimeout);
#if !CF
}
#endif
if (baseStream == null)
throw new Exception();
}
catch (Exception ex)
{
throw new MySqlException(Resources.UnableToConnectToHost,
(int) MySqlErrorCode.UnableToConnectToHost, ex);
}
if (baseStream == null)
throw new MySqlException("Unable to connect to any of the specified MySQL hosts");
int maxSinglePacket = 255*255*255;
stream = new MySqlStream(baseStream, encoding, false);
// read off the welcome packet and parse out it's values
stream.OpenPacket();
protocol = stream.ReadByte();
string versionString = stream.ReadString();
version = DBVersion.Parse(versionString);
threadId = stream.ReadInteger(4);
encryptionSeed = stream.ReadString();
if (version.isAtLeast(4, 0, 8))
maxSinglePacket = (256*256*256) - 1;
// read in Server capabilities if they are provided
serverCaps = 0;
if (stream.HasMoreData)
serverCaps = (ClientFlags) stream.ReadInteger(2);
if (version.isAtLeast(4, 1, 1))
{
/* New protocol with 16 bytes to describe server characteristics */
serverCharSetIndex = stream.ReadInteger(1);
serverStatus = (ServerStatusFlags) stream.ReadInteger(2);
stream.SkipBytes(13);
string seedPart2 = stream.ReadString();
encryptionSeed += seedPart2;
}
// based on our settings, set our connection flags
SetConnectionFlags();
stream.StartOutput(0, false);
stream.WriteInteger((int) connectionFlags,
version.isAtLeast(4, 1, 0) ? 4 : 2);
#if !CF
if (connectionString.UseSSL && (serverCaps & ClientFlags.SSL) != 0)
{
stream.Flush();
StartSSL();
stream.StartOutput(0, false);
stream.WriteInteger((int) connectionFlags,
version.isAtLeast(4, 1, 0) ? 4 : 2);
}
#endif
stream.WriteInteger(maxSinglePacket,
version.isAtLeast(4, 1, 0) ? 4 : 3);
if (version.isAtLeast(4, 1, 1))
{
stream.WriteByte(8);
stream.Write(new byte[23]);
}
Authenticate();
// if we are using compression, then we use our CompressedStream class
// to hide the ugliness of managing the compression
if ((connectionFlags & ClientFlags.COMPRESS) != 0)
//.........这里部分代码省略.........
示例6: if
void IMySqlValue.WriteValue(MySqlStream stream, bool binary, object val, int length)
{
byte[] buffToWrite = null;
if (val is System.Byte[])
buffToWrite = (byte[])val;
else if (val is Char[])
buffToWrite = stream.Encoding.GetBytes(val as char[]);
else
{
string s = val.ToString();
if (length == 0)
length = s.Length;
else
s = s.Substring(0, length);
buffToWrite = stream.Encoding.GetBytes(s);
}
// we assume zero length means write all of the value
if (length == 0)
length = buffToWrite.Length;
if (buffToWrite == null)
throw new MySqlException("Only byte arrays and strings can be serialized by MySqlBinary");
if (binary)
{
stream.WriteLength(length);
stream.Write(buffToWrite, 0, length);
}
else
{
if (stream.Version.isAtLeast(4, 1, 0))
stream.WriteStringNoNull("_binary ");
stream.WriteByte((byte)'\'');
EscapeByteArray(buffToWrite, length, stream);
stream.WriteByte((byte)'\'');
}
}