gpt4 book ai didi

.net - SqlCommand.Clone() 是创建深拷贝还是浅拷贝?

转载 作者:行者123 更新时间:2023-12-04 12:24:23 25 4
gpt4 key购买 nike

是否 SqlCommand.Clone()创建深拷贝还是浅拷贝?另外,调用Clone() 是否安全?同时来自多个线程(创建一个多个线程可以复制、设置参数值和执行的命令)?

最佳答案

调用 Clone 不安全来自多个线程,因为 SqlCommand类本身不是线程安全的类。你应该 lock克隆前..

但是您可以查看 SqlCommand.Clone()使用 Reflector 等程序的方法,这里是实际代码:

public SqlCommand Clone()
{
SqlCommand command = new SqlCommand(this);
Bid.Trace("<sc.SqlCommand.Clone|API> %d#, clone=%d#\n", this.ObjectID, command.ObjectID);
return command;
}

internal static void Trace(string fmtPrintfW, int a1, int a2)
{
if (((modFlags & ApiGroup.Trace) != ApiGroup.Off) && (modID != NoData))
{
NativeMethods.Trace(modID, UIntPtr.Zero, UIntPtr.Zero, fmtPrintfW, a1, a2);
}
}

[DllImport("System.Data.dll", EntryPoint="DllBidTraceCW", CallingConvention=CallingConvention.Cdecl, CharSet=CharSet.Unicode)]
internal static extern void Trace(IntPtr hID, UIntPtr src, UIntPtr info, string fmtPrintfW, int a1, int a2);

private SqlCommand(SqlCommand from) : this()
{
this.CommandText = from.CommandText;
this.CommandTimeout = from.CommandTimeout;
this.CommandType = from.CommandType;
this.Connection = from.Connection;
this.DesignTimeVisible = from.DesignTimeVisible;
this.Transaction = from.Transaction;
this.UpdatedRowSource = from.UpdatedRowSource;
SqlParameterCollection parameters = this.Parameters;
foreach (object obj2 in from.Parameters)
{
parameters.Add((obj2 is ICloneable) ? (obj2 as ICloneable).Clone() : obj2);
}
}

您可以看到它创建了一个新实例并将旧实例的所有属性添加到其中,但它不会深度复制所有属性“例如 Connection”,因此它是浅拷贝。

关于.net - SqlCommand.Clone() 是创建深拷贝还是浅拷贝?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6825288/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com