private byte[] MakeInsertTableRequestPacket(string tabName, DataTable dataTable) { int bodyLen = 0; int totalLen = 0; int fieldCnt = dataTable.Columns.Count; if (string.IsNullOrEmpty(tabName)) { throw new PDBException(PDBErrorCode.PdbE_INVALID_TABLE_NAME, "非法的表名"); } if (Encoding.UTF8.GetByteCount(tabName) >= kTableNameLen) { throw new PDBException(PDBErrorCode.PdbE_INVALID_TABLE_NAME, "表名过长"); } ByteStream byteStream = new ByteStream(); IntTool.WriteString(byteStream, tabName); foreach (DataColumn colInfo in dataTable.Columns) { IntTool.WriteString(byteStream, colInfo.ColumnName); } foreach (DataRow dr in dataTable.Rows) { for (int fieldIdx = 0; fieldIdx < fieldCnt; fieldIdx++) { if (dr[fieldIdx] is DBNull) { IntTool.WriteNull(byteStream); } else if (dr[fieldIdx] is bool) { IntTool.WriteBool(byteStream, Convert.ToBoolean(dr[fieldIdx])); } else if (dr[fieldIdx] is sbyte) { IntTool.WriteVarint64(byteStream, Convert.ToSByte(dr[fieldIdx])); } else if (dr[fieldIdx] is short) { IntTool.WriteVarint16(byteStream, Convert.ToInt16(dr[fieldIdx])); } else if (dr[fieldIdx] is int) { IntTool.WriteVarint32(byteStream, Convert.ToInt32(dr[fieldIdx])); } else if (dr[fieldIdx] is long) { IntTool.WriteVarint64(byteStream, Convert.ToInt64(dr[fieldIdx])); } else if (dr[fieldIdx] is float) { IntTool.WriteFloat(byteStream, Convert.ToSingle(dr[fieldIdx])); } else if (dr[fieldIdx] is double) { IntTool.WriteDouble(byteStream, Convert.ToDouble(dr[fieldIdx])); } else if (dr[fieldIdx] is DateTime) { IntTool.WriteDatetime(byteStream, Convert.ToDateTime(dr[fieldIdx])); } else if (dr[fieldIdx] is string) { IntTool.WriteString(byteStream, Convert.ToString(dr[fieldIdx])); } else if (dr[fieldIdx] is byte[]) { IntTool.WriteBlob(byteStream, (byte[])dr[fieldIdx]); } else { throw new Exception("不支持的值"); } } } bodyLen = byteStream.GetTotalLen(); totalLen = ProtoHeader.kHeadLen + bodyLen; byte[] packetBuf = new byte[totalLen]; Array.Clear(packetBuf, 0, totalLen); byteStream.Read(packetBuf, ProtoHeader.kHeadLen); uint bodyCrc = CRC.Crc32(packetBuf, ProtoHeader.kHeadLen, bodyLen); ProtoHeader proHdr = new ProtoHeader(packetBuf); proHdr.SetVersion(ProtoHeader.kProtoVersion); proHdr.SetMethod(ProtoHeader.MethodCmdInsertTableReq); proHdr.SetBodyLen((uint)bodyLen); proHdr.SetFieldCnt((uint)fieldCnt); proHdr.SetRecordCnt((uint)dataTable.Rows.Count); proHdr.SetBodyCrc(bodyCrc); proHdr.SetHeadCrc(); return(packetBuf); }